diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/kitty/kitty.conf | 71 | ||||
-rwxr-xr-x | .config/nvim/init.vim | 17 |
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 | ||
82 | background #002b36 | 82 | foreground #979eab |
83 | foreground #839496 | 83 | background #282c34 |
84 | cursor #93a1a1 | 84 | cursor #cccccc |
85 | 85 | color0 #282c34 | |
86 | selection_background #81908f | 86 | color1 #e06c75 |
87 | selection_foreground #002831 | 87 | color2 #98c379 |
88 | 88 | color3 #e5c07b | |
89 | color0 #073642 | 89 | color4 #61afef |
90 | color1 #dc322f | 90 | color5 #be5046 |
91 | color2 #859900 | 91 | color6 #56b6c2 |
92 | color3 #b58900 | 92 | color7 #979eab |
93 | color4 #268bd2 | 93 | color8 #393e48 |
94 | color5 #d33682 | 94 | color9 #d19a66 |
95 | color6 #2aa198 | 95 | color10 #56b6c2 |
96 | color7 #eee8d5 | 96 | color11 #e5c07b |
97 | color9 #cb4b16 | 97 | color12 #61afef |
98 | color8 #002b36 | 98 | color13 #be5046 |
99 | color10 #586e75 | 99 | color14 #56b6c2 |
100 | color11 #657b83 | 100 | color15 #abb2bf |
101 | color12 #839496 | 101 | selection_foreground #282c34 |
102 | color13 #6c71c4 | 102 | selection_background #979eab |
103 | color14 #93a1a1 | ||
104 | color15 #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 |
38 | Plug 'bling/vim-airline' | 38 | Plug 'bling/vim-airline' |
39 | 39 | ||
40 | " color themes | 40 | " " color theme |
41 | Plug 'lifepillar/vim-solarized8' | 41 | Plug 'joshdick/onedark.vim' |
42 | Plug 'arcticicestudio/nord-vim' | ||
43 | Plug 'aonemd/kuroi.vim' | ||
44 | Plug 'ayu-theme/ayu-vim' | ||
45 | Plug 'lifepillar/vim-gruvbox8' | ||
46 | 42 | ||
47 | "Personal wiki | 43 | "Personal wiki |
48 | Plug 'vimwiki/vimwiki' | 44 | Plug 'vimwiki/vimwiki' |
@@ -177,14 +173,7 @@ set diffopt+=internal,algorithm:patience | |||
177 | "{{{Look and Feel | 173 | "{{{Look and Feel |
178 | 174 | ||
179 | set termguicolors | 175 | set termguicolors |
180 | 176 | colorscheme 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 | |||
187 | colorscheme solarized8 | ||
188 | 177 | ||
189 | " }}} | 178 | " }}} |
190 | 179 | ||