summaryrefslogtreecommitdiffstats
path: root/.config/nvim
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim')
-rwxr-xr-x.config/nvim/init.vim40
1 files changed, 23 insertions, 17 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index e529898..0b72413 100755
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -29,10 +29,12 @@ Plug 'majutsushi/tagbar'
29Plug 'bling/vim-airline' 29Plug 'bling/vim-airline'
30 30
31" color themes 31" color themes
32Plug 'arcticicestudio/nord-vim' 32Plug 'lifepillar/vim-solarized8'
33Plug 'aonemd/kuroi.vim' 33
34Plug 'ayu-theme/ayu-vim' 34" Plug 'arcticicestudio/nord-vim'
35Plug 'lifepillar/vim-gruvbox8' 35" Plug 'aonemd/kuroi.vim'
36" Plug 'ayu-theme/ayu-vim'
37" Plug 'lifepillar/vim-gruvbox8'
36 38
37"Personal wiki 39"Personal wiki
38Plug 'vimwiki/vimwiki' 40Plug 'vimwiki/vimwiki'
@@ -42,13 +44,15 @@ Plug 'junegunn/goyo.vim'
42Plug 'lervag/vimtex' 44Plug 'lervag/vimtex'
43 45
44"visual display of indent levels 46"visual display of indent levels
45Plug 'nathanaelkane/vim-indent-guides' 47Plug 'thaerkh/vim-indentguides'
46"text alignment 48"text alignment
47Plug 'godlygeek/tabular' 49Plug 'godlygeek/tabular'
48"color code highlight 50"color code highlight
49Plug 'chrisbra/Colorizer' 51Plug 'chrisbra/Colorizer'
50"move selections up and down 52"move selections up and down
51Plug 'matze/vim-move' 53Plug 'matze/vim-move'
54" search/select/edit sandwiched textobjects (vim-surround)
55Plug 'machakann/vim-sandwich'
52 56
53"folding ledger files 57"folding ledger files
54Plug 'ledger/vim-ledger' 58Plug 'ledger/vim-ledger'
@@ -70,8 +74,6 @@ Plug 'svermeulen/vim-yoink'
70 74
71"enable repeating supported plugin maps with '.' 75"enable repeating supported plugin maps with '.'
72Plug 'tpope/vim-repeat' 76Plug 'tpope/vim-repeat'
73"quoting/parenthesizing made simple
74Plug 'tpope/vim-surround'
75"pairs of handy bracket mappings 77"pairs of handy bracket mappings
76Plug 'tpope/vim-unimpaired' 78Plug 'tpope/vim-unimpaired'
77"git wrapper 79"git wrapper
@@ -160,21 +162,21 @@ if executable('rg')
160 set grepprg=rg\ --vimgrep\ --no-heading 162 set grepprg=rg\ --vimgrep\ --no-heading
161endif 163endif
162 164
165let g:indentguides_ignorelist = ['text', 'tex', 'vimwiki']
166
163" }}} 167" }}}
164 168
165"{{{Look and Feel 169"{{{Look and Feel
166 170
167set termguicolors 171set termguicolors
168 172
169let g:nord_underline = 1 173" let g:nord_underline = 1
170let g:nord_italic = 1 174" let g:nord_italic = 1
171let g:nord_italic_comments = 1 175" let g:nord_italic_comments = 1
172let g:nord_cursor_line_number_background = 1 176" let g:nord_cursor_line_number_background = 1
177" let ayucolor="light"
173 178
174let ayucolor="light" 179colorscheme solarized8
175
176colorscheme nord
177" colorscheme ayu
178 180
179" }}} 181" }}}
180 182
@@ -213,8 +215,8 @@ nnoremap <silent> <Leader><cr> :noh<cr>
213nnoremap <space> za 215nnoremap <space> za
214" Search mappings: These will make it so that going to the next one in a 216" Search mappings: These will make it so that going to the next one in a
215" search will center on the line it's found in. 217" search will center on the line it's found in.
216map N Nzz 218" map N Nzz
217map n nzz 219" map n nzz
218 220
219nnoremap <leader>d :WebsterSearch(expand('<cWORD>'))<cr> 221nnoremap <leader>d :WebsterSearch(expand('<cWORD>'))<cr>
220vnoremap <leader>d :<c-u>WebsterSearch(@*)<cr> 222vnoremap <leader>d :<c-u>WebsterSearch(@*)<cr>
@@ -222,6 +224,10 @@ vnoremap <leader>d :<c-u>WebsterSearch(@*)<cr>
222" checkmarks on vimwiki 224" checkmarks on vimwiki
223nmap <Leader>v <Plug>VimwikiToggleListItem 225nmap <Leader>v <Plug>VimwikiToggleListItem
224 226
227nmap ` <Plug>Sneak_s
228nmap <leader>` <Plug>Sneak_S
229nnoremap ' `
230
225""""""""""""""""""""""""""" 231"""""""""""""""""""""""""""
226" yanks/registers/clips " 232" yanks/registers/clips "
227""""""""""""""""""""""""""" 233"""""""""""""""""""""""""""