nvim moment

This commit is contained in:
TymanWasTaken 2022-02-16 09:08:24 -07:00
parent 767b378d1c
commit 3c0b76792f
No known key found for this signature in database
GPG key ID: 7F17F5E1693307E7

View file

@ -1,20 +1,19 @@
call plug#begin() call plug#begin()
Plug 'liuchengxu/space-vim-dark' Plug 'liuchengxu/space-vim-dark' " Theme
Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline' " Status bar
Plug 'wlangstroth/vim-racket' Plug 'sheerun/vim-polyglot' " Collection of language packs
Plug 'sheerun/vim-polyglot' Plug 'leafgarland/typescript-vim' " Typescript syntax support
Plug 'leafgarland/typescript-vim' Plug 'rust-lang/rust.vim' " Rust support
Plug 'rust-lang/rust.vim' Plug 'preservim/tagbar' " Tag menu to show program layout
Plug 'preservim/tagbar' Plug 'universal-ctags/ctags' " Generates tags
Plug 'universal-ctags/ctags' Plug 'luochen1990/rainbow' " Rainbow parentheses
Plug 'luochen1990/rainbow' Plug 'vim-syntastic/syntastic' " Syntax checking plugin
Plug 'vim-syntastic/syntastic' Plug 'itchyny/lightline.vim' " Simple bottom bar
Plug 'itchyny/lightline.vim' Plug 'tpope/vim-surround' " Allows changing surrounding quotes and things
Plug 'tpope/vim-surround' Plug 'neoclide/coc.nvim', { 'branch': 'release' } " Language server support
Plug 'neoclide/coc.nvim', { 'branch': 'release' } Plug 'tommcdo/vim-lion' " Allow aligning code by an amount of chars
Plug 'tommcdo/vim-lion' Plug 'Shirk/vim-gas' " GNU syntax support
Plug 'Shirk/vim-gas' Plug 'ntpeters/vim-better-whitespace' " Shows whitespace at the end of lines
Plug 'ntpeters/vim-better-whitespace'
call plug#end() call plug#end()
" Get syntax files from config folder " Get syntax files from config folder