vim: Sort plugin order
This commit is contained in:
@@ -3,6 +3,8 @@ let mapleader = "\<Space>"
|
|||||||
let maplocalleader = mapleader
|
let maplocalleader = mapleader
|
||||||
|
|
||||||
" Plugins ######################################################################
|
" Plugins ######################################################################
|
||||||
|
" ARM assembly syntax highlighting
|
||||||
|
autocmd BufNewFile,BufRead *.s,*.S packadd! arm-syntax-vim | set filetype=arm
|
||||||
" Auto completion
|
" Auto completion
|
||||||
" needs vim >= 8.1.1719 to support features like popup and text property.
|
" needs vim >= 8.1.1719 to support features like popup and text property.
|
||||||
if (has('patch-8.1.1719') || has('nvim'))
|
if (has('patch-8.1.1719') || has('nvim'))
|
||||||
@@ -24,15 +26,13 @@ autocmd BufNewFile,BufRead *.tex packadd! vimtex
|
|||||||
\ | source $XDG_CONFIG_HOME/vim/vimtex.vim
|
\ | source $XDG_CONFIG_HOME/vim/vimtex.vim
|
||||||
" Git information
|
" Git information
|
||||||
packadd! vim-gitgutter
|
packadd! vim-gitgutter
|
||||||
|
" ctags
|
||||||
|
packadd! vim-gutentags
|
||||||
|
nmap <leader>t :Tags<CR>
|
||||||
" Surround text with parentheses, brackets, quotes, tags, etc.
|
" Surround text with parentheses, brackets, quotes, tags, etc.
|
||||||
let g:surround_no_mappings = 1
|
let g:surround_no_mappings = 1
|
||||||
packadd! vim-surround
|
packadd! vim-surround
|
||||||
source $XDG_CONFIG_HOME/vim/vim-surround.vim
|
source $XDG_CONFIG_HOME/vim/vim-surround.vim
|
||||||
" ARM assembly syntax highlighting
|
|
||||||
autocmd BufNewFile,BufRead *.s,*.S packadd! arm-syntax-vim | set filetype=arm
|
|
||||||
" ctags
|
|
||||||
packadd! vim-gutentags
|
|
||||||
nmap <leader>t :Tags<CR>
|
|
||||||
|
|
||||||
" Settings #####################################################################
|
" Settings #####################################################################
|
||||||
" hybrid linenumbers
|
" hybrid linenumbers
|
||||||
|
|||||||
Reference in New Issue
Block a user