diff --git a/home/alacritty.nix b/home/alacritty.nix index 976ef2e..adefa89 100644 --- a/home/alacritty.nix +++ b/home/alacritty.nix @@ -50,7 +50,34 @@ colors = { draw_bold_text_with_bright_colors = true; - # # Tomorrow Night Bright + + # gruvbox_material_medium_dark + primary = { + background = "0x282828"; + foreground = "0xd4be98"; + }; + normal = { + black = "0x3c3836"; + red = "0xea6962"; + green = "0xa9b665"; + yellow = "0xd8a657"; + blue = "0x7daea3"; + magenta = "0xd3869b"; + cyan = "0x89b482"; + white = "0xd4be98"; + }; + bright = { + black = "0x3c3836"; + red = "0xea6962"; + green = "0xa9b665"; + yellow = "0xd8a657"; + blue = "0x7daea3"; + magenta = "0xd3869b"; + cyan = "0x89b482"; + white = "0xd4be98"; + }; + + # # # Tomorrow Night Bright # primary = { # background = "0x141414"; # foreground = "0xeaeaea"; @@ -83,60 +110,61 @@ # white = "0xffffff"; # }; + # Nord: - primary = { - background = "0x2e3440"; - foreground = "0xd8dee9"; - dim_foreground = "0xa5abb6"; - }; + # primary = { + # background = "0x2e3440"; + # foreground = "0xd8dee9"; + # dim_foreground = "0xa5abb6"; + # }; - cursor = { - text = "0x2e3440"; - cursor = "0xd8dee9"; - }; + # cursor = { + # text = "0x2e3440"; + # cursor = "0xd8dee9"; + # }; - vi_mode_cursor = { - text = "0x2e3440"; - cursor = "0xd8dee9"; - }; + # vi_mode_cursor = { + # text = "0x2e3440"; + # cursor = "0xd8dee9"; + # }; - selection = { - text = "CellForeground"; - background = "0x4c566a"; - }; + # selection = { + # text = "CellForeground"; + # background = "0x4c566a"; + # }; - normal = { - black = "0x3b4252"; - red = "0xbf616a"; - green = "0xa3be8c"; - yellow = "0xebcb8b"; - blue = "0x81a1c1"; - magenta = "0xb48ead"; - cyan = "0x88c0d0"; - white = "0xe5e9f0"; - }; + # normal = { + # black = "0x3b4252"; + # red = "0xbf616a"; + # green = "0xa3be8c"; + # yellow = "0xebcb8b"; + # blue = "0x81a1c1"; + # magenta = "0xb48ead"; + # cyan = "0x88c0d0"; + # white = "0xe5e9f0"; + # }; - bright = { - black = "0x4c566a"; - red = "0xbf616a"; - green = "0xa3be8c"; - yellow = "0xebcb8b"; - blue = "0x81a1c1"; - magenta = "0xb48ead"; - cyan = "0x8fbcbb"; - white = "0xeceff4"; - }; + # bright = { + # black = "0x4c566a"; + # red = "0xbf616a"; + # green = "0xa3be8c"; + # yellow = "0xebcb8b"; + # blue = "0x81a1c1"; + # magenta = "0xb48ead"; + # cyan = "0x8fbcbb"; + # white = "0xeceff4"; + # }; - dim = { - black = "0x373e4d"; - red = "0x94545d"; - green = "0x809575"; - yellow = "0xb29e75"; - blue = "0x68809a"; - magenta = "0x8c738c"; - cyan = "0x6d96a5"; - white = "0xaeb3bb"; - }; + # dim = { + # black = "0x373e4d"; + # red = "0x94545d"; + # green = "0x809575"; + # yellow = "0xb29e75"; + # blue = "0x68809a"; + # magenta = "0x8c738c"; + # cyan = "0x6d96a5"; + # white = "0xaeb3bb"; + # }; diff --git a/home/neovim.nix b/home/neovim.nix index a1a35a3..5820fc1 100644 --- a/home/neovim.nix +++ b/home/neovim.nix @@ -119,6 +119,9 @@ in { nnoremap Telescope find_files nnoremap Telescope live_grep + " Don't darken the background + autocmd VimEnter * highlight normal ctermbg=NONE guibg=NONE + " Show trailing whitespace highlight ExtraWhitespace ctermbg=red guibg=red match ExtraWhitespace /\s\+$/