X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/b4df743852d4a4f08cee9d75976fd7228eb99f02..6455459d9b4b22e5c412c0b0a86680ce52f72a84:/vimrc diff --git a/vimrc b/vimrc index d7ca407..62a82d7 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 @@ -140,7 +143,7 @@ nmap :TagbarToggle let g:tagbar_ctags_bin="/usr/local/bin/ctags" " Color Column -set colorcolumn=81 +let &colorcolumn="80,150" " Add Pathogen call pathogen#infect() @@ -184,4 +187,3 @@ let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 1 let g:syntastic_error_symbol = "✕" let g:syntastic_warning_symbol = "⚠︎" -let g:syntastic_quiet_messages = {'level': 'warnings'}