summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/kitty/kitty.conf71
-rwxr-xr-x.config/nvim/init.vim17
2 files changed, 24 insertions, 64 deletions
diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf
index e5d1e84..64e5b81 100644
--- a/.config/kitty/kitty.conf
+++ b/.config/kitty/kitty.conf
@@ -79,56 +79,27 @@ inactive_tab_font_style normal
79 79
80# Dark 80# Dark
81 81
82background #002b36 82foreground #979eab
83foreground #839496 83background #282c34
84cursor #93a1a1 84cursor #cccccc
85 85color0 #282c34
86selection_background #81908f 86color1 #e06c75
87selection_foreground #002831 87color2 #98c379
88 88color3 #e5c07b
89color0 #073642 89color4 #61afef
90color1 #dc322f 90color5 #be5046
91color2 #859900 91color6 #56b6c2
92color3 #b58900 92color7 #979eab
93color4 #268bd2 93color8 #393e48
94color5 #d33682 94color9 #d19a66
95color6 #2aa198 95color10 #56b6c2
96color7 #eee8d5 96color11 #e5c07b
97color9 #cb4b16 97color12 #61afef
98color8 #002b36 98color13 #be5046
99color10 #586e75 99color14 #56b6c2
100color11 #657b83 100color15 #abb2bf
101color12 #839496 101selection_foreground #282c34
102color13 #6c71c4 102selection_background #979eab
103color14 #93a1a1
104color15 #fdf6e3
105
106# Light
107
108#background #fdf6e3
109#foreground #657b83
110#cursor #586e75
111#
112#selection_background #475b62
113#selection_foreground #eae3cb
114#
115#color0 #073642
116#color8 #002b36
117#color1 #dc322f
118#color9 #cb4b16
119#color2 #859900
120#color10 #586e75
121#color3 #b58900
122#color11 #657b83
123#color4 #268bd2
124#color12 #839496
125#color5 #d33682
126#color13 #6c71c4
127#color6 #2aa198
128#color14 #93a1a1
129#color7 #eee8d5
130#color15 #fdf6e3
131
132 103
133#: }}} 104#: }}}
134 105
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index e5bf3e3..df0d9ae 100755
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -37,12 +37,8 @@ Plug 'majutsushi/tagbar'
37"status/tabline 37"status/tabline
38Plug 'bling/vim-airline' 38Plug 'bling/vim-airline'
39 39
40" color themes 40" " color theme
41Plug 'lifepillar/vim-solarized8' 41Plug 'joshdick/onedark.vim'
42Plug 'arcticicestudio/nord-vim'
43Plug 'aonemd/kuroi.vim'
44Plug 'ayu-theme/ayu-vim'
45Plug 'lifepillar/vim-gruvbox8'
46 42
47"Personal wiki 43"Personal wiki
48Plug 'vimwiki/vimwiki' 44Plug 'vimwiki/vimwiki'
@@ -177,14 +173,7 @@ set diffopt+=internal,algorithm:patience
177"{{{Look and Feel 173"{{{Look and Feel
178 174
179set termguicolors 175set termguicolors
180 176colorscheme onedark
181" let g:nord_underline = 1
182" let g:nord_italic = 1
183" let g:nord_italic_comments = 1
184" let g:nord_cursor_line_number_background = 1
185" let ayucolor="light"
186
187colorscheme solarized8
188 177
189" }}} 178" }}}
190 179