Skip to content

Instantly share code, notes, and snippets.

@mopeneko
Last active February 10, 2021 21:39
Show Gist options
  • Save mopeneko/db5ffff2252560a2851d6b7a42976cf9 to your computer and use it in GitHub Desktop.
Save mopeneko/db5ffff2252560a2851d6b7a42976cf9 to your computer and use it in GitHub Desktop.
call plug#begin('~/.vim/plugged')
" Appearance
Plug 'vim-airline/vim-airline'
Plug 'arcticicestudio/nord-vim'
" Util
Plug 'preservim/nerdtree'
Plug 'tpope/vim-fugitive'
Plug 'jiangmiao/auto-pairs'
Plug 'dense-analysis/ale'
Plug 'prabirshrestha/async.vim'
Plug 'prabirshrestha/asyncomplete.vim'
Plug 'prabirshrestha/asyncomplete-lsp.vim'
Plug 'prabirshrestha/vim-lsp'
Plug 'mattn/vim-lsp-settings'
Plug 'mattn/vim-goimports'
Plug 'mattn/vim-lsp-icons'
Plug 'hrsh7th/vim-vsnip'
Plug 'hrsh7th/vim-vsnip-integ'
Plug 'editorconfig/editorconfig-vim'
" Lang
Plug 'posva/vim-vue'
Plug 'Quramy/tsuquyomi'
Plug 'Quramy/tsuquyomi-vue'
" Plug 'leafgarland/typescript-vim'
call plug#end()
" General
set number
colorscheme nord
" Keymap
nnoremap <C-e> :NERDTree<CR>
nnoremap <C-t> :NERDTreeToggle<CR>
" ale
let g:ale_lint_on_enter = 1
" vim-goimports
let g:goimports_simplify = 1
" tsuquyomi
autocmd BufNewFile,BufRead *.vue set filetype=vue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment