[Alacritty] Removes config. [rofi] Some more config
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
|
||||
"$terminal" = "wezterm";
|
||||
"$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";
|
||||
|
||||
exec-once = [
|
||||
@@ -298,8 +298,7 @@
|
||||
"$mainMod + SHIFT, F, fullscreen, 1"
|
||||
|
||||
# Monitors
|
||||
"$mainMod, R, focusmonitor, l"
|
||||
"$mainMod, S, focusmonitor, r"
|
||||
"$mainMod, R, focusmonitor, next"
|
||||
"$mainMod + CTRL, R, movecurrentworkspacetomonitor, l"
|
||||
"$mainMod + CTRL, S, movecurrentworkspacetomonitor, r"
|
||||
|
||||
|
||||
@@ -6,3 +6,12 @@
|
||||
--
|
||||
-- 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")
|
||||
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "markdown" },
|
||||
callback = function()
|
||||
vim.bo.shiftwidth = 4
|
||||
vim.bo.tabstop = 4
|
||||
vim.bo.softtabstop = 4
|
||||
end,
|
||||
})
|
||||
|
||||
3
home-manager/features/rofi/config/config.rasi
Normal file
3
home-manager/features/rofi/config/config.rasi
Normal file
@@ -0,0 +1,3 @@
|
||||
configuration {
|
||||
ssh-command: "wezterm ssh {host}";
|
||||
}
|
||||
@@ -39,61 +39,4 @@
|
||||
home.shellAliases = {
|
||||
"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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user