Removed syntastic

This commit is contained in:
Logan Saunders 2015-06-09 00:30:04 -07:00
parent 422b89d0d1
commit a0eebf14c4
2 changed files with 1 additions and 28 deletions

View File

@ -10,13 +10,3 @@ This repo includes my tmux.conf and vimrc along with the scripts used in said tm
##Fonts
The vimrc and tmux.conf files require patched fonts in order to be displayed correctly. I recommend [DejaVu Sans Mono for Powerline](https://github.com/powerline/fonts/tree/master/DejaVuSansMono) but you can find patched versions of many more fonts in that repository.
##Syntastic
One of the vim plugins in the vimrc file, syntastic requires small programs called "checkers" to work properly. These check your code and find any errors or,
in some cases, inefficiencies or code smells and are specific to one or two programming languages. Here are the checkers used in this vimrc (not including gcc which is found on practically every Unix-based OS on the planet and any other checker included in the command used to compile the language's files):
* [tidy5](http://www.htacg.org/tidy-html5/)
* [csslint](https://www.npmjs.com/package/csslint)
* [jshint](http://jshint.com/)
* [cppcheck](http://cppcheck.sourceforge.net/)
* [cpplint](https://gist.github.com/gigavinyl/fcb45d9d50a7287d3eb1)
* [pylint](http://www.pylint.org/)

19
vimrc
View File

@ -52,7 +52,6 @@ Bundle 'vim-ruby/vim-ruby'
Bundle 'scrooloose/nerdcommenter'
Bundle 'tpope/vim-surround'
Bundle 'ervandew/supertab'
Bundle 'scrooloose/syntastic'
call vundle#end() " required
filetype plugin indent on " required
@ -81,9 +80,9 @@ nnoremap <leader>v :vsplit<CR>
nnoremap <leader>bd :bd<CR>
nnoremap <leader>bn :bnext!<CR>
nnoremap <leader>bp :bprevious!<CR>
nnoremap <leader>c :lclose<CR>
nnoremap <leader>t :!
""""""Setup ctlp""""""
set runtimepath^=~/.vim/bundle/ctrlp.vim
let g:ctrlp_map = '<leader>p'
@ -108,19 +107,3 @@ let g:html_indent_inctags = 'html,body,head,tbody, div, img, a'
""""""Enable vim-airline's tabline""""""
let g:airline#extensions#tabline#enabled = 1
""""""Config syntastic""""""
"Configure Error messages and their behavior
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
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
"Add and configure checkers
let g:syntastic_html_tidy_exec = 'tidy5'
let g:syntastic_cpp_cppcheck_exec = 'cppcheck'
let g:syntastic_cpp_cpplint_exec = 'cpplint'
let g:syntastic_cpp_checkers = ['gcc', 'cppcheck', 'cpplint']
let g:syntastic_vim_checkers = ['vint']