dotfiles/nvim/.config/nvim/init.vim

82 lines
1.9 KiB
VimL
Raw Normal View History

2016-10-21 02:38:04 +00:00
call plug#begin()
" plugins
2016-10-21 02:38:04 +00:00
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'sickill/vim-monokai'
Plug 'airblade/vim-gitgutter'
Plug 'tpope/vim-sensible'
2016-10-21 21:36:11 +00:00
Plug 'chrisbra/sudoedit.vim'
2016-10-29 05:09:40 +00:00
Plug 'scrooloose/nerdtree'
2016-11-01 07:25:58 +00:00
Plug 'scrooloose/nerdcommenter'
2016-11-21 20:51:48 +00:00
Plug 'vim-syntastic/syntastic'
2016-12-18 06:40:28 +00:00
Plug 'fatih/vim-go'
2016-10-21 02:38:04 +00:00
call plug#end()
2016-10-21 02:38:04 +00:00
" use UTF-8 encoding
2016-10-21 22:21:44 +00:00
set encoding=utf-8
" view line numbers
2016-10-21 02:38:04 +00:00
set number
" display
2016-10-29 05:09:40 +00:00
set tabstop=4
set shiftwidth=4
set expandtab
2016-10-29 05:09:40 +00:00
"set softtabstop=4
2016-11-21 20:51:48 +00:00
" show tabs, trailing space & EOL
2016-10-29 05:09:40 +00:00
set listchars=tab:▸\ ,trail,eol
set list
2016-11-21 20:51:48 +00:00
"use system clipboard
set clipboard+=unnamedplus
" disable UDLR keys (prefer HJKL)
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>
" vim-airline - monokai + powerline
let g:airline_theme='base16_monokai'
let g:airline_powerline_fonts = 1
2016-11-21 20:51:48 +00:00
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#fnamemod = ':t'
2016-10-21 22:21:44 +00:00
set laststatus=2
2016-10-21 02:38:04 +00:00
" configure vim-monokai with syntax highlighting
2016-10-21 02:38:04 +00:00
colorscheme monokai
2016-10-21 22:21:44 +00:00
syntax enable
2016-10-29 05:09:40 +00:00
let g:load_doxygen_syntax=1
2016-11-01 07:25:58 +00:00
" enable filetype plugins
filetype plugin on
2016-12-08 22:44:22 +00:00
" enable nvim-specific inccommand
if has('nvim')
set inccommand=nosplit
endif
2016-11-21 20:51:48 +00:00
" 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']
2016-12-18 06:40:28 +00:00
let g:syntastic_go_checkers = ['golint', 'govet', 'errcheck']
let g:syntastic_mode_map = { 'mode': 'active', 'passive_filetypes': ['go'] }
2016-10-29 05:09:40 +00:00
2016-12-18 06:40:28 +00:00
" 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"