remove ultisnips
This commit is contained in:
parent
1ed37776c1
commit
55b323adf8
@ -1,7 +0,0 @@
|
|||||||
snippet meta:v "meta set viewport width and scale" w
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
endsnippet
|
|
||||||
|
|
||||||
snippet meta:c "meta charset utf-8" w
|
|
||||||
<meta charset="utf-8">
|
|
||||||
endsnippet
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
snippet ifname "if __name__ == __main__" b
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main()
|
|
||||||
endsnippet
|
|
||||||
|
|
||||||
@ -13,48 +13,44 @@ endif
|
|||||||
|
|
||||||
call plug#begin(pluginDir)
|
call plug#begin(pluginDir)
|
||||||
Plug 'junegunn/vim-plug'
|
Plug 'junegunn/vim-plug'
|
||||||
" quality of life
|
|
||||||
"normal mode keybinds
|
"normal mode keybinds
|
||||||
Plug 'tpope/vim-commentary'
|
Plug 'tpope/vim-commentary'
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
Plug 'tpope/vim-unimpaired'
|
Plug 'tpope/vim-unimpaired'
|
||||||
|
|
||||||
"command mode keybinds
|
"command mode keybinds
|
||||||
Plug 'tpope/vim-rsi'
|
Plug 'tpope/vim-rsi'
|
||||||
Plug 'tpope/vim-eunuch'
|
Plug 'tpope/vim-eunuch'
|
||||||
Plug 'tpope/vim-repeat'
|
Plug 'tpope/vim-repeat'
|
||||||
"async task runner
|
|
||||||
Plug 'tpope/vim-dispatch'
|
|
||||||
"git
|
"git
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
Plug 'tpope/vim-rhubarb'
|
Plug 'tpope/vim-rhubarb'
|
||||||
|
Plug 'tpope/vim-dispatch'
|
||||||
Plug 'airblade/vim-gitgutter'
|
Plug 'airblade/vim-gitgutter'
|
||||||
|
|
||||||
"fzf
|
"fzf
|
||||||
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
"snippet engine
|
|
||||||
Plug 'SirVer/ultisnips'
|
|
||||||
Plug 'honza/vim-snippets'
|
|
||||||
|
|
||||||
"syntax pack
|
|
||||||
Plug 'flazz/vim-colorschemes'
|
|
||||||
"linting and lsp
|
|
||||||
Plug 'w0rp/ale'
|
|
||||||
|
|
||||||
"extra language plugins
|
|
||||||
"go
|
"go
|
||||||
Plug 'fatih/vim-go'
|
Plug 'fatih/vim-go'
|
||||||
"html
|
"html
|
||||||
Plug 'mattn/emmet-vim'
|
Plug 'mattn/emmet-vim'
|
||||||
"markdown
|
"markdown
|
||||||
Plug 'plasticboy/vim-markdown'
|
Plug 'plasticboy/vim-markdown'
|
||||||
|
|
||||||
"other useful things
|
|
||||||
"editorconfig
|
|
||||||
Plug 'editorconfig/editorconfig-vim'
|
|
||||||
"browser/url opener
|
|
||||||
Plug 'tyru/open-browser.vim'
|
|
||||||
"tables
|
|
||||||
Plug 'godlygeek/tabular'
|
Plug 'godlygeek/tabular'
|
||||||
|
|
||||||
|
"colorpack
|
||||||
|
Plug 'flazz/vim-colorschemes'
|
||||||
|
|
||||||
|
"linting and lsp
|
||||||
|
Plug 'w0rp/ale'
|
||||||
|
|
||||||
|
"qol
|
||||||
|
Plug 'editorconfig/editorconfig-vim'
|
||||||
|
Plug 'tyru/open-browser.vim'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
"plugin settings
|
"plugin settings
|
||||||
@ -101,11 +97,6 @@ let g:vim_markdown_frontmatter = 1
|
|||||||
"vim-emmet
|
"vim-emmet
|
||||||
let g:user_emmet_install_global = 0
|
let g:user_emmet_install_global = 0
|
||||||
|
|
||||||
"UltiSnips
|
|
||||||
let g:UltiSnipsExpandTrigger="<tab>"
|
|
||||||
let g:UltiSnipsJumpForwardTrigger="<c-n>"
|
|
||||||
let g:UltiSnipsJumpBackwardTrigger="<c-p>"
|
|
||||||
|
|
||||||
"}}}
|
"}}}
|
||||||
|
|
||||||
"plugin keybinds
|
"plugin keybinds
|
||||||
@ -155,9 +146,4 @@ nnoremap <leader>h :Helptags<CR>
|
|||||||
nnoremap <leader>m :Maps<CR>
|
nnoremap <leader>m :Maps<CR>
|
||||||
nnoremap <leader>rg :Rg<CR>
|
nnoremap <leader>rg :Rg<CR>
|
||||||
|
|
||||||
"UltiSnips
|
|
||||||
inoremap <C-S> <ESC> :Snippets<CR>
|
|
||||||
nnoremap <leader>sn :Snippets<CR>
|
|
||||||
nnoremap <leader>se <ESC>:UltiSnipsEdit<CR>
|
|
||||||
|
|
||||||
"}}}
|
"}}}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user