-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
73 lines (65 loc) · 3.54 KB
/
.vimrc
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
let mapleader = ' '
call plug#begin('~/.vim/plugged')
Plug '~/.vim/plugged/before'
Plug 'https://github.com/Valloric/YouCompleteMe', { 'do': './install.py --clang-completer --rust-completer --ts-completer' }
Plug 'https://github.com/w0rp/ale'
" Plug 'https://github.com/jiangmiao/auto-pairs'
" Plug 'Exafunction/codeium.vim', { 'branch': 'main' }
Plug 'https://github.com/github/copilot.vim', { 'branch': 'release' }
Plug 'https://github.com/editorconfig/editorconfig-vim'
Plug 'https://github.com/junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'https://github.com/junegunn/fzf.vim'
Plug 'https://github.com/cohama/lexima.vim'
Plug 'https://github.com/godlygeek/tabular'
Plug 'https://github.com/tomtom/tcomment_vim'
Plug 'https://github.com/SirVer/ultisnips'
Plug 'https://github.com/tpope/vim-abolish'
Plug 'https://github.com/christoomey/vim-conflicted' | Plug 'https://github.com/tpope/vim-fugitive'
Plug 'https://github.com/tpope/vim-rhubarb'
Plug 'https://github.com/airblade/vim-gitgutter', { 'branch': 'main' }
Plug 'https://github.com/ludovicchabant/vim-gutentags'
Plug 'https://github.com/preservim/vim-indent-guides'
Plug 'https://github.com/inkarkat/vim-ingo-library' | Plug 'inkarkat/vim-mark'
Plug 'https://github.com/tpope/vim-obsession'
Plug 'https://github.com/sheerun/vim-polyglot'
Plug 'https://github.com/prettier/vim-prettier', { 'do': 'rm -rf node_modules && npx --yes yarn install --frozen-lockfile --production' }
Plug 'https://github.com/tpope/vim-repeat'
Plug 'https://github.com/tpope/vim-sensible'
Plug 'https://github.com/vitalk/vim-shebang'
" Plug 'https://github.com/tpope/vim-sleuth'
Plug 'https://github.com/tpope/vim-surround'
Plug 'https://github.com/puremourning/vimspector'
Plug 'https://github.com/slashmili/alchemist.vim', { 'for': 'elixir', 'branch': 'main' }
Plug 'https://github.com/ekalinin/Dockerfile.vim', { 'for': 'dockerfile' }
Plug 'https://github.com/iamcco/markdown-preview.nvim', { 'for': 'md', 'do': 'cd app && npx --yes yarn install' }
Plug 'https://github.com/chikamichi/mediawiki.vim', { 'for': 'mw' }
Plug 'https://github.com/alunny/pegjs-vim', { 'for': 'pegjs' }
Plug 'https://github.com/majutsushi/tagbar', { 'for': ['elixir', 'eelixir'] }
Plug 'https://github.com/freitass/todo.txt-vim', { 'for': ['todo'] }
Plug 'https://github.com/alvan/vim-closetag', { 'for': ['html', 'javascriptreact', 'mediawiki', 'typescriptreact', 'xhtml'] }
Plug 'https://github.com/hail2u/vim-css3-syntax', { 'for': 'css' }
Plug 'https://github.com/elixir-editors/vim-elixir', { 'for': ['elixir', 'eelixir'] }
Plug 'https://github.com/moll/vim-node'
Plug 'https://github.com/acarapetis/vim-sh-heredoc-highlighting', { 'for': ['sh', 'bash'] }
" Plug 'https://github.com/dhruvasagar/vim-table-mode', { 'for': 'markdown' }
Plug 'https://github.com/vimwiki/vimwiki', { 'for': 'wiki' }
Plug 'https://github.com/pedrohdz/vim-yaml-folds', { 'for': 'yaml' }
" colorscheme neverland-darker
Plug 'https://github.com/trapd00r/neverland-vim-theme'
" colorscheme framer_syntax_dark
" Plug 'https://github.com/balanceiskey/vim-framer-syntax', { 'branch': 'main' }
" colorscheme pixelmuerto
" Plug 'https://github.com/juanpabloaj/vim-pixelmuerto'
" colorscheme fairy-garden
" colorscheme ice-age
" Plug 'https://github.com/sainnhe/archived-colors'
" colorscheme leya
" Plug 'https://github.com/marlun/vim-starwars'
" colorscheme monotone
Plug 'https://github.com/Lokaltog/vim-monotone'
" colorscheme true-monochrome
" Plug 'https://github.com/ryanpcmcquen/true-monochrome_vim'
" colorscheme warlock
" Plug 'https://github.com/hardselius/warlock'
Plug '~/.vim/plugged/after'
call plug#end()