X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/9fbf161b2bbb5891d8a46f2e5b5b7fa0bc66e327..0b0de929fa98457d22cbbcee65013ec261b660e2:/vimrc diff --git a/vimrc b/vimrc index 2488bfc..096549c 100755 --- a/vimrc +++ b/vimrc @@ -70,6 +70,9 @@ au BufRead,BufNewFile *.txt call s:setupWrapping() " make Python follow PEP8 ( http://www.python.org/dev/peps/pep-0008/ ) au FileType python set softtabstop=4 tabstop=4 shiftwidth=4 textwidth=79 +" snes syntax highlighting +au BufNewFile,BufRead *.asm,*.s set filetype=snes" + " allow backspacing over everything in insert mode set backspace=indent,eol,start @@ -151,11 +154,6 @@ set foldnestmax=10 set nofoldenable set foldlevel=1 -" powerline stuff -python from powerline.vim import setup as powerline_setup -python powerline_setup() -python del powerline_setup - " Fix CtrlP root folder and add some ignores let g:ctrlp_working_path_mode = 0 let g:ctrlp_custom_ignore = '\v[\/](\.(git|hg|svn)|node_modules|DS_Store)$' @@ -184,3 +182,6 @@ let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 1 let g:syntastic_error_symbol = "✕" let g:syntastic_warning_symbol = "⚠︎" + +" Dank Mono Italics +highlight Keyword cterm=italic