From 2574888603d9d04dc07ac70c1f8801d9fd59b727 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Mon, 22 Nov 2021 02:25:03 -0800 Subject: [PATCH 1/3] updated kitty config --- kitty/kitty.conf | 5 +++-- kitty/nord.conf | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 kitty/nord.conf diff --git a/kitty/kitty.conf b/kitty/kitty.conf index 4b5fbf71..3270e181 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -1,4 +1,5 @@ -include /home/brian/.config/kitty/.nord-kitty.conf -background_opacity 0.9 +include /home/brian/.config/kitty/nord.conf +background_opacity 0.8 remember_window_size yes +cursor #ffffff cursor_stop_blinking_after 0.25 diff --git a/kitty/nord.conf b/kitty/nord.conf new file mode 100644 index 00000000..54f3a963 --- /dev/null +++ b/kitty/nord.conf @@ -0,0 +1,43 @@ +# Nord Colorscheme for Kitty +# Based on: +# - https://gist.github.com/marcusramberg/64010234c95a93d953e8c79fdaf94192 +# - https://github.com/arcticicestudio/nord-hyper + +foreground #D8DEE9 +background #2E3440 +selection_foreground #000000 +selection_background #FFFACD +url_color #0087BD +cursor #81A1C1 + +# black +color0 #3B4252 +color8 #4C566A + +# red +color1 #BF616A +color9 #BF616A + +# green +color2 #A3BE8C +color10 #A3BE8C + +# yellow +color3 #EBCB8B +color11 #EBCB8B + +# blue +color4 #81A1C1 +color12 #81A1C1 + +# magenta +color5 #B48EAD +color13 #B48EAD + +# cyan +color6 #88C0D0 +color14 #8FBCBB + +# white +color7 #E5E9F0 +color15 #ECEFF4 From 2e4c58d94fda22233b8033aa796ce3edc2a163af Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Mon, 22 Nov 2021 03:16:40 -0800 Subject: [PATCH 2/3] updated kitty.conf --- kitty/kitty.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/kitty/kitty.conf b/kitty/kitty.conf index 3270e181..87cc095b 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -1,5 +1,6 @@ include /home/brian/.config/kitty/nord.conf background_opacity 0.8 remember_window_size yes +map ctrl+shift+enter new_window_with_cwd cursor #ffffff cursor_stop_blinking_after 0.25 From 10d66ef9492267724f7ddf0a6b01d65e2b195c63 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Mon, 22 Nov 2021 04:07:01 -0800 Subject: [PATCH 3/3] updated nerdtree settings in init.vim --- nvim/init.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/init.vim b/nvim/init.vim index eec1ee89..cf401b39 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -33,8 +33,8 @@ nmap nmap " Start NERDTree. If a file is specified, move the cursor to its window. -autocmd StdinReadPre * let s:std_in=1 -autocmd VimEnter * NERDTree | if argc() > 0 || exists("s:std_in") | wincmd p | endif +"autocmd StdinReadPre * let s:std_in=1 +"autocmd VimEnter * NERDTree | if argc() > 0 || exists("s:std_in") | wincmd p | endif "NerdTree opens on right let g:NERDTreeWinPos = "right"