From c7366460f3ef338315d06871b43ca40b9755c58a Mon Sep 17 00:00:00 2001 From: iFargle Date: Tue, 29 Aug 2023 19:09:29 +0900 Subject: [PATCH] test --- home-manager/common/software/cli/kitty.nix | 8 ++--- home-manager/common/software/cli/neovim.nix | 37 ++++++++++----------- 2 files changed, 22 insertions(+), 23 deletions(-) diff --git a/home-manager/common/software/cli/kitty.nix b/home-manager/common/software/cli/kitty.nix index 58217167..8cde16f4 100644 --- a/home-manager/common/software/cli/kitty.nix +++ b/home-manager/common/software/cli/kitty.nix @@ -23,10 +23,10 @@ disable_ligatures never shell_integration enabled - font_family JetBrains Mono Medium - bold_font JetBrains Mono Bold - italic_font JetBrains Mono Italic - bold_italic_font JetBrains Mono Bold Italic + font_family JetBrainsMono Nerd Medium + bold_font JetBrainsMono Nerd Bold + italic_font JetBrainsMono Nerd Italic + bold_italic_font JetBrainsMono Nerd Bold Italic include ./theme.conf ''; diff --git a/home-manager/common/software/cli/neovim.nix b/home-manager/common/software/cli/neovim.nix index ec72e40a..4fa3960a 100644 --- a/home-manager/common/software/cli/neovim.nix +++ b/home-manager/common/software/cli/neovim.nix @@ -8,7 +8,6 @@ plugins = with pkgs.vimPlugins; [ nvchad nvchad-ui - gruvbox ]; # plugins = with pkgs.vimPlugins; [ # # vim-airline # Trying out lualine - below @@ -64,22 +63,22 @@ # vim-lastplace # # vim-visual-multi # # ]; - extraConfig = '' - set mouse=a - set number - syntax on - set hlsearch - set ignorecase - set smartcase - set autoindent - set ruler - set shiftwidth=2 - set expandtab - set softtabstop=2 - set cursorline - let g:rainbow_active = 1 - - colorscheme gruvbox - ''; - }; +# extraConfig = '' +# set mouse=a +# set number +# syntax on +# set hlsearch +# set ignorecase +# set smartcase +# set autoindent +# set ruler +# set shiftwidth=2 +# set expandtab +# set softtabstop=2 +# set cursorline +# let g:rainbow_active = 1 +# +# colorscheme gruvbox +# ''; +# }; }