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/.netrwhist | 4 ++++ old_0.4.4/after/ftplugin/c.vim | 1 + old_0.4.4/after/ftplugin/cpp.vim | 1 + old_0.4.4/after/ftplugin/scm.vim | 3 +++ old_0.4.4/init.vim | 37 +++++++++++++++++++++++++++++++++++++ 5 files changed, 46 insertions(+) create mode 100644 old_0.4.4/.netrwhist create mode 100644 old_0.4.4/after/ftplugin/c.vim create mode 100644 old_0.4.4/after/ftplugin/cpp.vim create mode 100644 old_0.4.4/after/ftplugin/scm.vim create mode 100644 old_0.4.4/init.vim (limited to 'old_0.4.4') diff --git a/old_0.4.4/.netrwhist b/old_0.4.4/.netrwhist new file mode 100644 index 0000000..d3d3113 --- /dev/null +++ b/old_0.4.4/.netrwhist @@ -0,0 +1,4 @@ +let g:netrw_dirhistmax =10 +let g:netrw_dirhistcnt =2 +let g:netrw_dirhist_2='/home/louie/Documents/scripts/backup_scripts' +let g:netrw_dirhist_1='/home/louie/Documents/scripts' diff --git a/old_0.4.4/after/ftplugin/c.vim b/old_0.4.4/after/ftplugin/c.vim new file mode 100644 index 0000000..08a344a --- /dev/null +++ b/old_0.4.4/after/ftplugin/c.vim @@ -0,0 +1 @@ +setlocal formatoptions-=c formatoptions-=r formatoptions-=o diff --git a/old_0.4.4/after/ftplugin/cpp.vim b/old_0.4.4/after/ftplugin/cpp.vim new file mode 100644 index 0000000..08a344a --- /dev/null +++ b/old_0.4.4/after/ftplugin/cpp.vim @@ -0,0 +1 @@ +setlocal formatoptions-=c formatoptions-=r formatoptions-=o diff --git a/old_0.4.4/after/ftplugin/scm.vim b/old_0.4.4/after/ftplugin/scm.vim new file mode 100644 index 0000000..e8a356b --- /dev/null +++ b/old_0.4.4/after/ftplugin/scm.vim @@ -0,0 +1,3 @@ +set expandtab +set shiftwidth=4 +set softtabstop=4 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