You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
config/nvim/init.vim

39 lines
674 B

call g:plug#begin('~/.nvim-plugins')
Plug 'bling/vim-airline'
Plug 'rakr/vim-one'
Plug 'tpope/vim-fugitive'
"Plug 'sheerun/vim-polyglot'
6 years ago
" Fuzzy open
Plug 'cloudhead/neovim-fuzzy'
6 years ago
" Rg project grep
" Plug 'jremmen/vim-ripgrep'
Plug 'dyng/ctrlsf.vim'
6 years ago
" Completion and stuff
Plug 'neoclide/coc.nvim', {'branch': 'release'}
6 years ago
" graphql syntax highlighting
Plug 'jparise/vim-graphql'
6 years ago
" vuejs files
Plug 'posva/vim-vue'
6 years ago
" Python formatter
Plug 'psf/black'
6 years ago
" tag finder
Plug 'majutsushi/tagbar'
6 years ago
" auto-matching for parentheses
Plug 'Raimondi/delimitMate'
call g:plug#end()
for fpath in split(globpath('~/.config/nvim/conf.d', '*.vim'), '\n')
exe 'source' fpath
endfor