call plug#begin() " plugins Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' Plug 'sickill/vim-monokai' Plug 'airblade/vim-gitgutter' Plug 'chrisbra/sudoedit.vim' Plug 'scrooloose/nerdtree' Plug 'scrooloose/nerdcommenter' Plug 'vim-syntastic/syntastic' Plug 'fatih/vim-go' call plug#end() " use UTF-8 encoding set encoding=utf-8 " view line numbers set number " display set tabstop=4 set shiftwidth=4 set expandtab "set softtabstop=4 " show tabs, trailing space & EOL set listchars=tab:▸\ ,trail:·,eol:¬ set list "use system clipboard set clipboard+=unnamedplus " disable UDLR keys (prefer HJKL) noremap noremap noremap noremap " vim-airline - monokai + powerline let g:airline_theme='base16_monokai' let g:airline_powerline_fonts = 1 let g:airline#extensions#tabline#enabled = 1 let g:airline#extensions#tabline#fnamemod = ':t' set laststatus=2 " configure vim-monokai with syntax highlighting colorscheme monokai syntax enable let g:load_doxygen_syntax=1 " enable filetype plugins filetype plugin on " enable nvim-specific inccommand if has('nvim') set inccommand=nosplit endif " syntastic 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 " checkers let g:syntastic_c_checkers = ['gcc', 'cppcheck'] let g:syntastic_cpp_checkers = ['gcc', 'cppcheck'] let g:syntastic_javascript_checkers = ['eslint'] let g:syntastic_go_checkers = ['golint', 'govet', 'errcheck'] let g:syntastic_php_checkers = ['php', 'phpcs'] let g:syntastic_mode_map = { 'mode': 'active', 'passive_filetypes': ['go'] } " vim-go let g:go_highlight_functions = 1 let g:go_highlight_methods = 1 let g:go_highlight_fields = 1 let g:go_highlight_types = 1 let g:go_highlight_operators = 1 let g:go_highlight_build_constraints = 1 let g:go_list_type = "quickfix"