diff options
author | Aaron LI <aly@aaronly.me> | 2018-11-09 23:45:53 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-11-09 23:46:33 +0800 |
commit | 5389a95005f701cd05072390b81d2ef94cd0d573 (patch) | |
tree | d7ef19fd5fa274c76d94a5727685513a5f0b50df | |
parent | 4ff40b0b0dc22cafd5147b9b7cd7e649a0f072b6 (diff) | |
download | dotfiles-5389a95005f701cd05072390b81d2ef94cd0d573.tar.bz2 |
vim: Remove old configs for spf13 bundle
-rw-r--r-- | _vimrc.bundles.local | 17 | ||||
-rw-r--r-- | _vimrc.local | 31 |
2 files changed, 0 insertions, 48 deletions
diff --git a/_vimrc.bundles.local b/_vimrc.bundles.local deleted file mode 100644 index cebb1e2..0000000 --- a/_vimrc.bundles.local +++ /dev/null @@ -1,17 +0,0 @@ -" -" ~/.vimrc.bundles.local -" Local customizations for `spf13-vim-3` -" https://github.com/spf13/spf13-vim -" -" Aaron LI -" Created: 2016-07-05 -" - -" Once new plugins are added, they have to be installed by: -" $ vim +BundleInstall! +BundleClean +q - -" Custom plugins -Bundle 'mbbill/fencview' -Bundle 'fcitx.vim' -Bundle 'Konfekt/FastFold' - diff --git a/_vimrc.local b/_vimrc.local deleted file mode 100644 index 7535273..0000000 --- a/_vimrc.local +++ /dev/null @@ -1,31 +0,0 @@ -" -" ~/.vimrc.local -" Local customizations for `spf13-vim-3` -" https://github.com/spf13/spf13-vim -" -" Aaron LI -" Created: 2016-05-20 -" - -colorscheme molokai - -if has('gui_running') - set guifont=Source\ Code\ Pro\ Regular\ 11 -endif - -set tabstop=8 -set wrap -" wrap long lines at a character in 'breakat' -set linebreak - -" turn off spell check -set nospell - -" do not use system clipboard -set clipboard= - -" syntastic settings -"let g:syntastic_always_populate_loc_list = 1 -"let g:syntastic_auto_loc_list = 1 -"let g:syntastic_check_on_open = 1 -"let g:syntastic_check_on_wq = 0 |