zmiany....
This commit is contained in:
@ -110,14 +110,14 @@ Plug 'stephpy/vim-php-cs-fixer'
|
||||
|
||||
" TypeScript
|
||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
Plug 'leafgarland/typescript-vim'
|
||||
" Plug 'leafgarland/typescript-vim'
|
||||
" Plug 'mhartington/nvim-typescript'
|
||||
Plug 'Quramy/tsuquyomi'
|
||||
" Plug 'Quramy/tsuquyomi'
|
||||
|
||||
|
||||
" HasiCorp
|
||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
Plug 'fatih/vim-hclfmt'
|
||||
" Plug 'fatih/vim-hclfmt'
|
||||
Plug 'hashivim/vim-terraform'
|
||||
Plug 'hashivim/vim-consul'
|
||||
" Plug 'b4b4r07/vim-hcl'
|
||||
@ -127,7 +127,7 @@ Plug 'juliosueiras/vim-terraform-completion'
|
||||
|
||||
" Salt-Stack (.:REACTIVATE:.)
|
||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
Plug 'saltstack/salt-vim'
|
||||
"Plug 'saltstack/salt-vim'
|
||||
|
||||
" GoLang
|
||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
@ -137,7 +137,7 @@ Plug 'fatih/vim-go'
|
||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
" Plug 'chr4/nginx.vim'
|
||||
|
||||
Plug 'robertbasic/vim-hugo-helper'
|
||||
"Plug 'robertbasic/vim-hugo-helper'
|
||||
|
||||
Plug 'ekalinin/Dockerfile.vim'
|
||||
|
||||
@ -390,3 +390,31 @@ let g:vdebug_options = {
|
||||
" let $NVIM_PYTHON_LOG_LEVEL="DEBUG"
|
||||
"
|
||||
let g:hugohelper_spell_check_lang = 'pl_pl'
|
||||
|
||||
|
||||
let g:terraform_align=1
|
||||
let g:terraform_fold_sections=1
|
||||
let g:terraform_fmt_on_save=1
|
||||
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
" (Optional)Remove Info(Preview) window
|
||||
set completeopt-=preview
|
||||
|
||||
" (Optional)Hide Info(Preview) window after completions
|
||||
autocmd CursorMovedI * if pumvisible() == 0|pclose|endif
|
||||
autocmd InsertLeave * if pumvisible() == 0|pclose|endif
|
||||
|
||||
" (Optional) Enable terraform plan to be include in filter
|
||||
let g:syntastic_terraform_tffilter_plan = 1
|
||||
|
||||
" (Optional) Default: 0, enable(1)/disable(0) plugin's keymapping
|
||||
let g:terraform_completion_keys = 1
|
||||
|
||||
" (Optional) Default: 1, enable(1)/disable(0) t
|
||||
|
Reference in New Issue
Block a user