[Alacritty] Removes config. [rofi] Some more config

This commit is contained in:
2025-03-26 10:23:18 -07:00
parent 415d1e11a9
commit 0ddb2989b4
4 changed files with 14 additions and 60 deletions

View File

@@ -18,7 +18,7 @@
"$terminal" = "wezterm"; "$terminal" = "wezterm";
"$fileManager" = "dolphin"; "$fileManager" = "dolphin";
"$menu" = "rofi -show drun -theme ~/.config/rofi/launcher/style.rasi"; "$menu" = "rofi -show combi -combi-modes drun,ssh,run -theme ~/.config/rofi/launcher/style.rasi";
"$browser" = "firefox"; "$browser" = "firefox";
exec-once = [ exec-once = [
@@ -298,8 +298,7 @@
"$mainMod + SHIFT, F, fullscreen, 1" "$mainMod + SHIFT, F, fullscreen, 1"
# Monitors # Monitors
"$mainMod, R, focusmonitor, l" "$mainMod, R, focusmonitor, next"
"$mainMod, S, focusmonitor, r"
"$mainMod + CTRL, R, movecurrentworkspacetomonitor, l" "$mainMod + CTRL, R, movecurrentworkspacetomonitor, l"
"$mainMod + CTRL, S, movecurrentworkspacetomonitor, r" "$mainMod + CTRL, S, movecurrentworkspacetomonitor, r"

View File

@@ -6,3 +6,12 @@
-- --
-- Or remove existing autocmds by their group name (which is prefixed with `lazyvim_` for the defaults) -- Or remove existing autocmds by their group name (which is prefixed with `lazyvim_` for the defaults)
-- e.g. vim.api.nvim_del_augroup_by_name("lazyvim_wrap_spell") -- e.g. vim.api.nvim_del_augroup_by_name("lazyvim_wrap_spell")
vim.api.nvim_create_autocmd("FileType", {
pattern = { "markdown" },
callback = function()
vim.bo.shiftwidth = 4
vim.bo.tabstop = 4
vim.bo.softtabstop = 4
end,
})

View File

@@ -0,0 +1,3 @@
configuration {
ssh-command: "wezterm ssh {host}";
}

View File

@@ -39,61 +39,4 @@
home.shellAliases = { home.shellAliases = {
"imgcat" = "wezterm imgcat"; "imgcat" = "wezterm imgcat";
}; };
programs.alacritty = {
enable = true;
settings = {
window = {
blur = true;
opacity = 0.85;
};
font = {
normal = {
family = "FiraCode Nerd Font";
style = "Regular";
};
size = 13;
};
selection.save_to_clipboard = true;
colors = {
## Decay theme
# Eye Friendly Colors
# Created by https://github.com/decaycs
bright = {
black = "#384148";
blue = "#8cc1ff";
cyan = "#90daff";
green = "#94f7c5";
magenta = "#e2a6ff";
red = "#fc7b81";
white = "#fafdff";
yellow = "#ffeba6";
};
cursor = {
cursor = "#f5f5f5";
text = "CellForeground";
};
normal = {
black = "#1c252c";
blue = "#70a5eb";
cyan = "#74bee9";
green = "#78dba9";
magenta = "#c68aee";
red = "#e05f65";
white = "#dee1e6";
yellow = "#f1cf8a";
};
primary = {
background = "#171a1f";
foreground = "#b6beca";
};
};
};
};
} }