dotfiles/nvim/plugins.vimrc

55 lines
1.6 KiB
Plaintext
Raw Normal View History

2021-06-16 11:31:28 -05:00
" Assorted plugins
2021-08-06 12:49:41 -05:00
Plug 'cespare/vim-toml', { 'for': 'toml' }
2021-10-19 15:16:29 -05:00
Plug 'chrisbra/unicode.vim'
2021-07-10 22:51:07 -05:00
Plug 'jiangmiao/auto-pairs'
2021-08-06 12:49:41 -05:00
Plug 'leafgarland/typescript-vim', { 'for': 'typescript' }
2021-08-12 12:31:58 -05:00
Plug 'leafoftree/vim-svelte-plugin', { 'for': 'svelte' }
Plug 'lukas-reineke/indent-blankline.nvim'
2021-08-18 11:26:38 -05:00
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
2021-08-06 12:49:41 -05:00
Plug 'posva/vim-vue', { 'for': 'vue' }
Plug 'ron-rs/ron.vim', { 'for': 'ron' }
2021-07-19 11:38:17 -05:00
Plug 'tommcdo/vim-exchange'
Plug 'tpope/vim-fugitive'
2021-06-17 15:05:59 -05:00
Plug 'tpope/vim-projectionist'
2021-08-06 13:21:43 -05:00
Plug 'tpope/vim-rails'
2021-07-21 11:51:14 -05:00
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-surround'
2021-06-17 15:05:59 -05:00
Plug 'vim-test/vim-test'
2021-08-24 15:53:37 -05:00
Plug 'wakatime/vim-wakatime'
2021-06-16 11:31:28 -05:00
2021-10-13 11:32:56 -05:00
" LSP and autocomplete
Plug 'neovim/nvim-lspconfig' |
\ Plug 'hrsh7th/cmp-nvim-lsp' |
\ Plug 'hrsh7th/cmp-buffer' |
\ Plug 'hrsh7th/nvim-cmp' |
\ Plug 'hrsh7th/cmp-vsnip' |
2021-10-13 16:23:50 -05:00
\ Plug 'hrsh7th/vim-vsnip' |
\ Plug 'rafamadriz/friendly-snippets'
2021-10-13 11:32:56 -05:00
2021-10-19 15:04:57 -05:00
" Gitsigns
Plug 'nvim-lua/plenary.nvim' |
\ Plug 'lewis6991/gitsigns.nvim'
2021-06-16 11:31:28 -05:00
" Lightline
Plug 'itchyny/lightline.vim' |
\ Plug 'albertomontesg/lightline-asyncrun' |
2021-06-16 11:31:28 -05:00
\ Plug 'itchyny/vim-gitbranch' |
\ Plug 'macthecadillac/lightline-gitdiff' |
2021-08-18 11:20:48 -05:00
\ Plug 'ryanoasis/vim-devicons' |
2021-06-16 11:31:28 -05:00
\ Plug 'anstadnik/tmuxline.vim'
" Using the above fork for lightline truecolor support
" \ Plug 'edkolev/tmuxline.vim'
2021-08-18 11:20:48 -05:00
" NvimTree
Plug 'kyazdani42/nvim-tree.lua' |
\ Plug 'kyazdani42/nvim-web-devicons'
2021-06-14 14:20:50 -05:00
2021-07-14 16:06:10 -05:00
" Vim-Markdown
Plug 'godlygeek/tabular' |
2021-08-06 12:49:41 -05:00
\ Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }
2021-06-14 14:20:50 -05:00
" sonokai colorscheme + supporting plugins
2021-06-16 11:31:28 -05:00
Plug 'sainnhe/sonokai' |
\ Plug 'rmolin88/pomodoro.vim' |
\ Plug 'sainnhe/artify.vim'