diff options
author | Yigit Sever | 2019-03-30 21:43:59 +0300 |
---|---|---|
committer | Yigit Sever | 2019-03-30 21:43:59 +0300 |
commit | 3e25614fbb0d64cbc5c4f2392e580e4b996bbc76 (patch) | |
tree | 88fdef26c83545d24b7816f430498b8ed845859e /.config/nvim/init.vim | |
parent | 6fae7c67e94a0b16f516ee189fc341404c7d7cd7 (diff) | |
parent | cfd96387edf69b2e05b54b1c57d9a8903a0b80bd (diff) | |
download | dotfiles-3e25614fbb0d64cbc5c4f2392e580e4b996bbc76.tar.gz dotfiles-3e25614fbb0d64cbc5c4f2392e580e4b996bbc76.tar.bz2 dotfiles-3e25614fbb0d64cbc5c4f2392e580e4b996bbc76.zip |
Merge branch 'master' of 207.154.210.186:/home/yigit/dots
Diffstat (limited to '.config/nvim/init.vim')
-rwxr-xr-x | .config/nvim/init.vim | 37 |
1 files changed, 9 insertions, 28 deletions
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 | ||