55 lines
1.6 KiB
VimL
55 lines
1.6 KiB
VimL
" vim-pathogen
|
|
runtime bundle/vim-pathogen/autoload/pathogen.vim
|
|
execute pathogen#infect('bundle/{}')
|
|
|
|
" ale
|
|
let g:ale_lint_on_text_changed = 'never'
|
|
let g:ale_lint_on_enter = 'never'
|
|
let g:ale_linters = {'go': ['gofmt', 'go vet', 'go build']}
|
|
|
|
" deoplete.nvim
|
|
if has('python3')
|
|
let g:deoplete#enable_at_startup = 1
|
|
inoremap <expr><TAB> pumvisible() ? "\<C-y>" : "\<TAB>"
|
|
if len($PYTHON3_HOST_PROG) > 0
|
|
let g:python3_host_prog=$PYTHON3_HOST_PROG
|
|
endif
|
|
endif
|
|
|
|
" fzf
|
|
let $FZF_DEFAULT_COMMAND='ag --hidden --ignore .git -f -g "" 2> /dev/null'
|
|
let g:fzf_colors =
|
|
\ { 'fg': ['fg', 'Normal'],
|
|
\ 'bg': ['bg', 'Normal'],
|
|
\ 'hl': ['fg', 'Comment'],
|
|
\ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'],
|
|
\ 'bg+': ['bg', 'CursorLine', 'CursorColumn'],
|
|
\ 'hl+': ['fg', 'Statement'],
|
|
\ 'info': ['fg', 'PreProc'],
|
|
\ 'border': ['fg', 'Ignore'],
|
|
\ 'prompt': ['fg', 'Conditional'],
|
|
\ 'pointer': ['fg', 'Exception'],
|
|
\ 'marker': ['fg', 'Keyword'],
|
|
\ 'spinner': ['fg', 'Label'],
|
|
\ 'header': ['fg', 'Comment'] }
|
|
|
|
" vim-airline
|
|
let g:airline#extensions#tabline#enabled = 1
|
|
|
|
" vim-argwrap
|
|
autocmd FileType go let b:argwrap_tail_comma = 1
|
|
|
|
" vim-go
|
|
let g:go_fmt_command = 'goimports'
|
|
|
|
" vim-interestinwords
|
|
let g:interestingWordsGUIColors = ['#8CCBEA', '#A4E57E', '#FFDB72', '#FF7272', '#FFB3FF', '#9999FF']
|
|
let g:interestingWordsTermColors = ['154', '121', '211', '137', '214', '222']
|
|
|
|
" vim-licenses
|
|
let g:licenses_authors_name = 'Alex Yatskov <alex@foosoft.net>'
|
|
let g:licenses_copyright_holders_name = g:licenses_authors_name
|
|
|
|
" vim-rooter
|
|
let g:rooter_silent_chdir = 1
|