Initial commit

This commit is contained in:
2020-11-03 09:15:14 -08:00
commit d660668c91
5 changed files with 312 additions and 0 deletions

18
vimrc Normal file
View File

@@ -0,0 +1,18 @@
execute pathogen#infect()
filetype plugin indent on
set modeline
set background=dark
set shell=/bin/bash
syntax on
if has('gui_running')
set gfn=Victor\ Mono\ Semi-Bold\ 15
colorscheme solarized
let g:solarized_menu=0
else
colorscheme torte
endif
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | endif
set ai et nu ts=2 sw=2 wm=0 tabpagemax=100