Another copy of my dotfiles. Because I don't completely trust GitHub.
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.

59 lines
1.4 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. call plug#begin('~/.local/share/vim/plugged')
  2. " Look & Feel
  3. Plug 'kaicataldo/material.vim'
  4. Plug 'itchyny/lightline.vim'
  5. Plug 'mengelbrecht/lightline-bufferline'
  6. Plug 'lambdalisue/nerdfont.vim'
  7. " Addons
  8. Plug 'scrooloose/nerdtree'
  9. Plug 'airblade/vim-gitgutter'
  10. Plug 'tpope/vim-surround'
  11. Plug 'jremmen/vim-ripgrep'
  12. Plug 'blarghmatey/split-expander'
  13. Plug 'sheerun/vim-polyglot'
  14. Plug 'neoclide/coc.nvim', {'branch': 'release'}
  15. Plug 'junegunn/goyo.vim'
  16. Plug 'vim-scripts/indentpython.vim'
  17. Plug 'preservim/nerdcommenter'
  18. Plug 'mileszs/ack.vim'
  19. Plug 'yegappan/taglist'
  20. "Plug 'puremourning/vimspector'
  21. Plug 'lervag/vimtex'
  22. Plug 'gu-fan/riv.vim'
  23. Plug 'isene/hyperlist.vim'
  24. Plug 'neomutt/neomutt.vim'
  25. Plug 'VebbNix/lf-vim'
  26. " Tmux integration
  27. Plug 'benmills/vimux'
  28. Plug 'christoomey/vim-tmux-navigator'
  29. " Neuron
  30. Plug 'oberblastmeister/neuron.nvim', { 'branch' : 'unstable' }
  31. Plug 'nvim-lua/popup.nvim'
  32. Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']}
  33. " File system navigation
  34. Plug 'nvim-lua/plenary.nvim'
  35. Plug 'nvim-telescope/telescope.nvim'
  36. " OCS Yank PLugin for use with Blink Shell
  37. Plug 'ojroques/vim-oscyank'
  38. " Syntax highlighting
  39. Plug 'joelbeedle/pseudo-syntax'
  40. Plug 'rhysd/vim-wasm'
  41. Plug 'elzr/vim-json'
  42. Plug 'tpope/vim-markdown'
  43. Plug 'pangloss/vim-javascript'
  44. Plug 'leafgarland/typescript-vim'
  45. Plug 'vim-scripts/cool.vim'
  46. Plug 'justinmk/vim-syntax-extra'
  47. Plug 'arrufat/vala.vim'
  48. Plug 'Shirk/vim-gas'
  49. call plug#end()