summaryrefslogtreecommitdiff
path: root/old_0.4.4/init.vim
diff options
context:
space:
mode:
authorlouie <louie@example.com>2022-06-22 20:12:42 -0700
committerlouie <louie@example.com>2022-06-22 20:12:42 -0700
commit95bce4610af5ccc7cee4d68633ce6b7af5fe342b (patch)
treeb3383113afbc2732b4269cb1c26903c752a73184 /old_0.4.4/init.vim
First commit
Diffstat (limited to 'old_0.4.4/init.vim')
-rw-r--r--old_0.4.4/init.vim37
1 files changed, 37 insertions, 0 deletions
diff --git a/old_0.4.4/init.vim b/old_0.4.4/init.vim
new file mode 100644
index 0000000..b1e7211
--- /dev/null
+++ b/old_0.4.4/init.vim
@@ -0,0 +1,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