summaryrefslogtreecommitdiff
path: root/old_0.4.4/init.vim
blob: b1e7211731b4d901e05c96f632b7643f253c1e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
syntax on
colorscheme slate

set hlsearch
set number
set shiftwidth=4
set smartindent
set tabstop=4

set foldmethod=indent
set foldlevelstart=20

"Pmenu Settings (Popup Menu)
highlight Pmenu ctermbg=White ctermfg=Black guibg=Gray


"" Plugins
"call plug#begin("~/.local/share/nvim/plugged")
"
"Plug 'neoclide/coc.nvim', {'branch': 'release'}
"
"call plug#end()
"
"" Settings for coc
"
"" Use K to show documentation in preview window.
"nnoremap <silent> K :call <SID>show_documentation()<CR>
"
"function! s:show_documentation()
"  if (index(['vim','help'], &filetype) >= 0)
"    execute 'h '.expand('<cword>')
"  elseif (coc#rpc#ready())
"    call CocActionAsync('doHover')
"  else
"    execute '!' . &keywordprg . " " . expand('<cword>')
"  endif
"endfunction