-
Notifications
You must be signed in to change notification settings - Fork 1
/
vimrc.local.bundles
96 lines (68 loc) · 2.15 KB
/
vimrc.local.bundles
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
" vim-bootstrap
Plug 'scrooloose/nerdtree'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-fugitive'
Plug 'vim-airline/vim-airline'
Plug 'airblade/vim-gitgutter'
Plug 'Raimondi/delimitMate'
Plug 'tpope/vim-rhubarb' " required by fugitive to :GBrowse
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'Shougo/vimproc.vim', {'do': 'make'}
Plug 'honza/vim-snippets'
" Multi Cursor with CTRL+n and c(hange)
Plug 'terryma/vim-multiple-cursors'
" Surround word: Use e.g. ysiw` and ds`
Plug 'tpope/vim-surround'
" Auto detect indentation width
Plug 'tpope/vim-sleuth'
" Colorscheme dracula (default)
Plug 'dracula/vim', { 'as': 'dracula' }
" Colorscheme nord
Plug 'arcticicestudio/nord-vim'
" Repeat surround commands
Plug 'tpope/vim-repeat'
" Start screen
Plug 'mhinz/vim-startify'
" Nerd font icons
Plug 'ryanoasis/vim-devicons'
" Zen mode
Plug 'junegunn/goyo.vim'
" Expand region (+_-)
Plug 'terryma/vim-expand-region'
" Run test suites with :Test*
Plug 'janko-m/vim-test'
" Change root directory automatically
Plug 'airblade/vim-rooter'
" Coc (Language Server and Completion)
Plug 'neoclide/coc.nvim', { 'branch': 'release' }
" Open links in browser
Plug 'tyru/open-browser.vim'
" Markdown preview
Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app && yarn install' }
" PureScript
Plug 'purescript-contrib/purescript-vim', { 'for' : 'purescript' }
" Haskell
Plug 'https://github.com/neovimhaskell/haskell-vim.git', { 'for' : 'haskell' }
" Ranger (,o)
Plug 'francoiscabrol/ranger.vim'
" Sort motions (e.g. gsi( or gs)
Plug 'christoomey/vim-sort-motion'
" Coerce casing (e.g. crc to camelcase or crs to snake case)
Plug 'tpope/vim-abolish'
" Support .editorconfig
Plug 'editorconfig/editorconfig-vim'
" Language Tool (:LanguageToolCheck)
Plug 'dpelle/vim-LanguageTool'
" Copilot
Plug 'github/copilot.vim'
" Fish Syntax
Plug 'khaveesh/vim-fish-syntax', { 'for' : 'fish' }
" Handlebars Syntax
Plug 'mustache/vim-mustache-handlebars', { 'for' : 'handlebars' }
" Zoxide
Plug 'nanotee/zoxide.vim'
" Nix Syntax Highlighting
Plug 'LnL7/vim-nix', { 'for' : 'nix' }
" TypeScript Syntax Highlighting
Plug 'HerringtonDarkholme/yats.vim', { 'for' : 'typescript' }