diff options
| author | Yigit Sever | 2019-03-30 19:53:52 +0300 |
|---|---|---|
| committer | Yigit Sever | 2019-03-30 19:54:31 +0300 |
| commit | cfd96387edf69b2e05b54b1c57d9a8903a0b80bd (patch) | |
| tree | f32102440b008ae13028210034ca228e39d81a5b /.config | |
| parent | e9120444fbd265f319619c036c1da19bb57cd5e5 (diff) | |
| download | dotfiles-cfd96387edf69b2e05b54b1c57d9a8903a0b80bd.tar.gz dotfiles-cfd96387edf69b2e05b54b1c57d9a8903a0b80bd.tar.bz2 dotfiles-cfd96387edf69b2e05b54b1c57d9a8903a0b80bd.zip | |
Migrate from gruvbox to nord
Diffstat (limited to '.config')
| -rw-r--r-- | .config/kitty/kitty.conf | 62 | ||||
| -rwxr-xr-x | .config/nvim/init.vim | 37 |
2 files changed, 31 insertions, 68 deletions
diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index 8fb681f..b681e2c 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf | |||
| @@ -19,7 +19,7 @@ box_drawing_scale 0.001, 1, 1.5, 2 | |||
| 19 | #: Cursor customization {{{ | 19 | #: Cursor customization {{{ |
| 20 | 20 | ||
| 21 | cursor_shape block | 21 | cursor_shape block |
| 22 | cursor #FDE311 | 22 | cursor #d8dee9 |
| 23 | cursor_text_color background | 23 | cursor_text_color background |
| 24 | 24 | ||
| 25 | cursor_blink_interval 0 | 25 | cursor_blink_interval 0 |
| @@ -75,45 +75,27 @@ inactive_tab_font_style normal | |||
| 75 | #: }}} | 75 | #: }}} |
| 76 | 76 | ||
| 77 | #: Color scheme {{{ | 77 | #: Color scheme {{{ |
| 78 | 78 | foreground #d8dee9 | |
| 79 | foreground #ebdbb2 | 79 | background #2e3440 |
| 80 | background #282828 | 80 | selection_foreground #2e3440 |
| 81 | 81 | selection_background #d8dee9 | |
| 82 | #: The foreground and background for text selected with the mouse | 82 | |
| 83 | selection_foreground #fbf1c7 | 83 | color0 #3b4252 |
| 84 | selection_background #d65d0e | 84 | color1 #bf616a |
| 85 | 85 | color2 #a3be8c | |
| 86 | #: black | 86 | color3 #ebcb8b |
| 87 | color0 #282828 | 87 | color4 #81a1c1 |
| 88 | color8 #928374 | 88 | color5 #b48ead |
| 89 | 89 | color6 #88c0d0 | |
| 90 | #: red | 90 | color7 #e5e9f0 |
| 91 | color1 #cc241d | 91 | color8 #4c566a |
| 92 | color9 #fb4934 | 92 | color9 #bf616a |
| 93 | 93 | color10 #a3be8c | |
| 94 | #: green | 94 | color11 #ebcb8b |
| 95 | color2 #97971a | 95 | color12 #81a1c1 |
| 96 | color10 #b8bb26 | 96 | color13 #b48ead |
| 97 | 97 | color14 #8fbcbb | |
| 98 | #: yellow | 98 | color15 #eceff4 |
| 99 | color3 #d79921 | ||
| 100 | color11 #fabd2f | ||
| 101 | |||
| 102 | #: blue | ||
| 103 | color4 #458588 | ||
| 104 | color12 #83a598 | ||
| 105 | |||
| 106 | #: purple | ||
| 107 | color5 #b16286 | ||
| 108 | color13 #d3869b | ||
| 109 | |||
| 110 | #: cyan | ||
| 111 | color6 #689d6a | ||
| 112 | color14 #8ec07c | ||
| 113 | |||
| 114 | #: white | ||
| 115 | color7 #a89984 | ||
| 116 | color15 #ebdbb2 | ||
| 117 | 99 | ||
| 118 | #: }}} | 100 | #: }}} |
| 119 | 101 | ||
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 3d4faa7..06992d0 100755 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | "{{{ | 1 | "{{{ Plugs |
| 2 | 2 | ||
| 3 | call plug#begin('~/.local/share/nvim/plugged') | 3 | call plug#begin('~/.local/share/nvim/plugged') |
| 4 | 4 | ||
| @@ -8,8 +8,6 @@ Plug 'Valloric/YouCompleteMe' | |||
| 8 | Plug 'w0rp/ale' | 8 | Plug 'w0rp/ale' |
| 9 | "manages tag files | 9 | "manages tag files |
| 10 | Plug 'ludovicchabant/vim-gutentags' | 10 | Plug 'ludovicchabant/vim-gutentags' |
| 11 | "language pack | ||
| 12 | "Plug 'sheerun/vim-polyglot' | ||
| 13 | 11 | ||
| 14 | "snippet solution | 12 | "snippet solution |
| 15 | Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' | 13 | Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' |
| @@ -27,7 +25,7 @@ Plug 'majutsushi/tagbar' | |||
| 27 | Plug 'bling/vim-airline' | 25 | Plug 'bling/vim-airline' |
| 28 | 26 | ||
| 29 | " color theme. | 27 | " color theme. |
| 30 | Plug 'morhetz/gruvbox' | 28 | Plug 'arcticicestudio/nord-vim' |
| 31 | 29 | ||
| 32 | "Personal wiki | 30 | "Personal wiki |
| 33 | Plug 'vimwiki/vimwiki' | 31 | Plug 'vimwiki/vimwiki' |
| @@ -120,9 +118,6 @@ set shiftwidth=4 | |||
| 120 | set softtabstop=4 | 118 | set softtabstop=4 |
| 121 | set tabstop=8 | 119 | set tabstop=8 |
| 122 | 120 | ||
| 123 | " Visual aid to deter from typing past column 110 | ||
| 124 | "set colorcolumn=110 | ||
| 125 | |||
| 126 | " Use english for spellchecking, but don't spellcheck by default | 121 | " Use english for spellchecking, but don't spellcheck by default |
| 127 | set spell spelllang=en_us | 122 | set spell spelllang=en_us |
| 128 | set nospell | 123 | set nospell |
| @@ -169,32 +164,18 @@ set cinoptions=l1 | |||
| 169 | 164 | ||
| 170 | "{{{Look and Feel | 165 | "{{{Look and Feel |
| 171 | 166 | ||
| 172 | " Color Scheme | ||
| 173 | " gruvbox_color_column works as expected IF the order is: | ||
| 174 | " set termguicolors | ||
| 175 | " colorscheme gruvbox | ||
| 176 | " ... | ||
| 177 | " set background=dark | ||
| 178 | " Investigate later | ||
| 179 | |||
| 180 | "let $NVIM_TUI_ENABLE_TRUE_COLOR=1 | ||
| 181 | set termguicolors | 167 | set termguicolors |
| 182 | 168 | ||
| 183 | colorscheme gruvbox | ||
| 184 | |||
| 185 | let g:gruvbox_bold=1 | ||
| 186 | let g:gruvbox_color_column='red' | ||
| 187 | let g:gruvbox_underline=1 | ||
| 188 | let g:gruvbox_contrast_dark='medium' | ||
| 189 | let g:gruvbox_contrast_light='hard' | ||
| 190 | let g:gruvbox_vert_split='aqua' | ||
| 191 | |||
| 192 | set background=dark " Setting dark mode | 169 | set background=dark " Setting dark mode |
| 193 | 170 | ||
| 194 | "highlight ColorColumn guibg='DarkRed' | 171 | "highlight NormalNC guibg='Black' |
| 195 | highlight NormalNC guibg='Black' | 172 | |
| 196 | "highlight NormalNC guifg='Cyan' | 173 | let g:nord_underline = 1 |
| 174 | let g:nord_italic = 1 | ||
| 175 | let g:nord_italic_comments = 1 | ||
| 176 | let g:nord_cursor_line_number_background = 1 | ||
| 197 | 177 | ||
| 178 | colorscheme nord | ||
| 198 | 179 | ||
| 199 | " }}} | 180 | " }}} |
| 200 | 181 | ||
