From 95bce4610af5ccc7cee4d68633ce6b7af5fe342b Mon Sep 17 00:00:00 2001 From: louie Date: Wed, 22 Jun 2022 20:12:42 -0700 Subject: First commit --- old_0.4.4/init.vim | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 old_0.4.4/init.vim (limited to 'old_0.4.4/init.vim') 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 K :call show_documentation() +" +"function! s:show_documentation() +" if (index(['vim','help'], &filetype) >= 0) +" execute 'h '.expand('') +" elseif (coc#rpc#ready()) +" call CocActionAsync('doHover') +" else +" execute '!' . &keywordprg . " " . expand('') +" endif +"endfunction -- cgit