-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimbundle
56 lines (38 loc) · 1.03 KB
/
.vimbundle
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
" vim: ft=vim
call plug#begin()
" Jump to matching HTML/XML tags
Plug 'adelarsq/vim-matchit'
" Linting and error checking
Plug 'dense-analysis/ale'
" Adds buffer commands
Plug 'jlanzarotta/bufexplorer'
" GitHub Copilot integration
Plug 'github/copilot.vim'
" Fuzzy finding with fzf
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
" JSON syntax support
Plug 'leshill/vim-json'
" TypeScript syntax support
Plug 'leafgarland/typescript-vim'
" Distraction-free writing mode
Plug 'mikewest/vimroom'
" Send ripgrep results to quickfix
Plug 'jremmen/vim-ripgrep'
" Collection of Vim color schemes
Plug 'flazz/vim-colorschemes'
" Sensible Vim defaults
Plug 'tpope/vim-sensible'
" Commenting with `gc`
Plug 'tpope/vim-commentary'
" UNIX shell commands within Vim
Plug 'tpope/vim-eunuch'
" Git integration
Plug 'tpope/vim-fugitive'
" File navigation with `-`
Plug 'tpope/vim-vinegar'
" Pairs of useful mappings
Plug 'tpope/vim-unimpaired'
" Project-specific settings
Plug 'tpope/vim-projectionist'
call plug#end()