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

123 lines
3.2 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'
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'
2017-01-21 05:09:43 +00:00
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'zchee/deoplete-go', { 'do': 'make' }
Plug 'carlitux/deoplete-ternjs', { 'do': 'npm install -g tern' }
Plug 'rust-lang/rust.vim'
Plug 'racer-rust/vim-racer'
2017-02-20 00:01:57 +00:00
Plug 'pearofducks/ansible-vim'
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']
2017-01-12 21:09:52 +00:00
let g:syntastic_php_checkers = ['php', 'phpcs']
2016-12-18 06:40:28 +00:00
let g:syntastic_mode_map = { 'mode': 'active', 'passive_filetypes': ['go'] }
2017-01-21 05:09:43 +00:00
let g:syntastic_rust_checkers = ['rustc']
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"
2017-01-21 05:09:43 +00:00
" deoplete
let g:deoplete#enable_at_startup = 1
let g:deoplete#sources#go#sort_class = ['package', 'func', 'type', 'var', 'const']
let g:deoplete#sources#go#package_dot = 1
let g:deoplete#sources#go#pointer = 1
let g:deoplete#sources#go#use_cache = 1
let g:deoplete#sources#go#json_directory = '~/.cache/deoplete/go'
let g:tern_request_timeout = 1
let g:tern_show_signature_in_pum = '0'
set completeopt+=noinsert
set completeopt+=noselect
set completeopt-=preview
" deoplete tab-complete
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
let g:deoplete#omni#functions = {}
let g:deoplete#omni#functions.javascript = [
\ 'tern#Complete'
\]
" vim-racer
set hidden
let g:racer_cmd = "~/.cargo/bin/racer"
let g:rustfmt_autosave = 1
2017-02-20 00:01:57 +00:00
" ansible-vim
let g:ansible_extra_syntaxes = "sh.vim ruby.vim"
let g:ansible_attribute_highlight = "ob"
let g:ansible_name_highlight = 'd'
let g:ansible_extra_keywords_highlight = 1
2017-04-04 03:17:19 +00:00
" python host paths
let g:python_host_prog = '/usr/bin/python2'
let g:python3_host_prog = '/usr/bin/python3'