Created
August 13, 2019 08:01
-
-
Save omegacoleman/208a69362dc2f9a941a3ff83a7a55f4e to your computer and use it in GitHub Desktop.
my vim config (based on spf13-vim)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" .vimrc.before.local | |
let g:spf13_bundle_groups=['general', 'writing', 'snipmate', 'programming', 'python', 'javascript', 'html', 'misc',] | |
" .vimrc.bundles.local | |
UnBundle 'nathanaelkane/vim-indent-guides' | |
Bundle 'Yggdroot/indentLine' | |
UnBundle 'tpope/vim-markdown' | |
Bundle 'plasticboy/vim-markdown', {'name': 'plastic-md'} | |
Bundle 'vim-scripts/vim-auto-save' | |
" .vimrc.local | |
let g:NERDTreeDirArrowExpandable = '>' | |
let g:NERDTreeDirArrowCollapsible = 'v' | |
" let g:solarized_termcolors=16 | |
" colorscheme solarized | |
set background=dark | |
colorscheme PaperColor | |
let g:airline_theme='badwolf' | |
set noexpandtab | |
set showbreak=↪\ | |
autocmd VimEnter * set nospell | |
let g:tex_conceal = "" | |
let g:vim_markdown_math = 1 | |
let g:pymode_python = 'python3' | |
let g:pymode_options_max_line_length=180 | |
let g:pymode_lint_checkers = ['pep8', 'pyflakes'] | |
let g:pymode_lint_ignore = "D213,F405,F403,E126,W605" | |
" 用 gvim/macvim 才要下面几行 | |
set guifont=NovaMono\ for\ Powerline:h22 | |
set lines=999 columns=9999 | |
set fu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment