nvim/packages.vim

107 lines
2.5 KiB
VimL
Raw Normal View History

call plug#begin(expand('<sfile>:p:h') . '/plugged')
" basic stuff
Plug 'pbrisbin/vim-mkdir'
Plug 'embear/vim-localvimrc'
Plug 'crater2150/vim-theme-chroma'
"Plug '~/sources/chroma-colors/vim'
Plug 'fladson/vim-kitty'
" tim pope stuff
Plug 'tpope/vim-abolish'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-characterize'
Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-sleuth'
2022-02-07 10:52:43 +00:00
"
" motions and textobjects
Plug 'kana/vim-textobj-user'
Plug 'glts/vim-textobj-comment'
2021-01-19 23:14:42 +00:00
Plug 'michaeljsmith/vim-indent-object'
Plug 'vim-scripts/argtextobj.vim'
Plug 'mhinz/vim-signify'
2021-08-11 10:25:50 +00:00
" LSP
2022-02-07 10:52:43 +00:00
Plug 'neovim/nvim-lspconfig'
Plug 'hrsh7th/cmp-buffer'
2022-02-07 11:01:31 +00:00
Plug 'hrsh7th/cmp-nvim-lsp'
Plug 'hrsh7th/cmp-path'
Plug 'hrsh7th/cmp-vsnip'
2022-02-07 10:52:43 +00:00
Plug 'hrsh7th/nvim-cmp'
2022-02-07 11:01:31 +00:00
Plug 'hrsh7th/vim-vsnip'
2022-02-07 10:52:43 +00:00
Plug 'nvim-lua/plenary.nvim'
Plug 'scalameta/nvim-metals'
2021-12-10 09:53:10 +00:00
Plug 'williamboman/nvim-lsp-installer'
2022-02-07 11:01:31 +00:00
2021-08-11 10:25:50 +00:00
Plug 'nvim-treesitter/nvim-treesitter', {'branch': '0.5-compat', 'do': ':TSUpdate'}
Plug 'nvim-lua/lsp-status.nvim'
Plug 'RishabhRD/popfix'
Plug 'RishabhRD/nvim-lsputils'
Plug 'kyazdani42/nvim-web-devicons'
Plug 'folke/trouble.nvim'
Plug 'folke/lsp-colors.nvim'
Plug 'nvim-lua/popup.nvim'
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
2019-12-13 09:47:11 +00:00
2021-01-19 23:14:42 +00:00
Plug 'machakann/vim-highlightedyank'
2021-07-12 10:21:38 +00:00
" for stuff installed via disto package manager, e.g. fzf's bundled vim plugin
2018-07-25 12:15:00 +00:00
Plug '/usr/share/vim/vimfiles'
Plug 'junegunn/fzf.vim'
2019-11-13 13:43:12 +00:00
Plug 'vim-airline/vim-airline'
Plug 'lambdalisue/suda.vim'
2017-07-13 12:03:55 +00:00
Plug 'vim-scripts/SyntaxRange'
" ruby
Plug 'depuracao/vim-rdoc'
Plug 'vim-ruby/vim-ruby'
Plug 'tpope/vim-rails'
Plug 'tpope/vim-rake'
" git
2021-07-12 10:21:38 +00:00
Plug 'lambdalisue/gina.vim'
Plug 'gregsexton/gitv'
2017-10-29 20:27:04 +00:00
Plug 'gisphm/vim-gitignore'
2022-02-07 10:52:43 +00:00
Plug 'sjl/splice.vim'
" other filetype specific plugins
Plug 'jamessan/vim-gnupg'
let g:no_cecutil_maps = 1
Plug 'powerman/vim-plugin-AnsiEsc'
Plug 'tpope/vim-markdown'
2019-05-09 09:16:41 +00:00
Plug 'lervag/vimtex'
2019-11-13 13:43:12 +00:00
" let g:vimtex_compiler_method = 'arara'
Plug 'ledger/vim-ledger'
2021-09-21 14:43:00 +00:00
Plug 'anekos/hledger-vim'
2017-07-13 12:03:55 +00:00
Plug 'elzr/vim-json'
Plug 'kchmck/vim-coffee-script'
2018-07-25 12:15:00 +00:00
Plug 'gre/play2vim'
Plug 'isobit/vim-caddyfile'
2019-05-09 09:18:03 +00:00
Plug 'vim-pandoc/vim-pandoc'
Plug 'vim-pandoc/vim-pandoc-syntax'
2021-09-21 14:43:00 +00:00
Plug 'GEverding/vim-hocon'
2022-02-27 12:10:58 +00:00
Plug 'nfnty/vim-nftables'
2018-03-20 15:33:08 +00:00
function! BuildComposer(info)
if a:info.status != 'unchanged' || a:info.force
if has('nvim')
!cargo build --release
else
!cargo build --release --no-default-features --features json-rpc
endif
endif
endfunction
Plug 'euclio/vim-markdown-composer', { 'do': function('BuildComposer') }
call plug#end()
" vim:ft=vim foldmethod=marker