Add vim snippets
This commit is contained in:
parent
22d44ed1ae
commit
dc767b870a
1 changed files with 7 additions and 0 deletions
|
@ -39,6 +39,9 @@ Plug 'nvie/vim-flake8'
|
|||
Plug 'dense-analysis/ale'
|
||||
" Black autoformatter for Python
|
||||
Plug 'psf/black', { 'branch': 'stable' }
|
||||
" Snippets
|
||||
Plug 'SirVer/ultisnips'
|
||||
Plug 'honza/vim-snippets'
|
||||
|
||||
" HIGHLIGHTING
|
||||
" Whitespace highlighting and removal
|
||||
|
@ -101,6 +104,10 @@ let g:tex_flavor = 'latex'
|
|||
let g:vimtex_view_method = 'zathura'
|
||||
let g:vimtex_quickfix_autoclose_after_keystrokes = 2
|
||||
let g:vimtex_quickfix_open_on_warning = 0
|
||||
|
||||
let g:UltiSnipsExpandTrigger = '<tab>'
|
||||
let g:UltiSnipsJumpForwardTrigger = '<c-b>'
|
||||
let g:UltiSnipsJumpBackwardTrigger = '<c-z>'
|
||||
" }}}
|
||||
" COLORS {{{
|
||||
colorscheme badwolf
|
||||
|
|
Loading…
Add table
Reference in a new issue