summaryrefslogtreecommitdiff
path: root/old_0.4.4
diff options
context:
space:
mode:
Diffstat (limited to 'old_0.4.4')
-rw-r--r--old_0.4.4/.netrwhist4
-rw-r--r--old_0.4.4/after/ftplugin/c.vim1
-rw-r--r--old_0.4.4/after/ftplugin/cpp.vim1
-rw-r--r--old_0.4.4/after/ftplugin/scm.vim3
-rw-r--r--old_0.4.4/init.vim37
5 files changed, 46 insertions, 0 deletions
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 <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