-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugins.vim
160 lines (121 loc) · 4.42 KB
/
plugins.vim
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
call plug#begin('~/.vim/plugged')
" {{{ Common dependencies
Plug 'MunifTanjim/nui.nvim'
Plug 'nvim-lua/plenary.nvim'
" }}}
" {{{ extending vim, extra functionality
Plug 'mileszs/ack.vim' " zoeken: werkt na brew install the_silver_searcher
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " We recommend updating the parsers on update
Plug 'nvim-treesitter/playground'
Plug 'nvim-treesitter/nvim-treesitter-textobjects'
Plug 'nvim-treesitter/nvim-treesitter-context' " keeps context lines to the top
Plug 'hiphish/rainbow-delimiters.nvim' " rainbow parentheses
Plug 'mizlan/iswap.nvim' " swap argumenten, array dingen enz :ISwap
Plug 'sbdchd/neoformat'
"
Plug 'mfussenegger/nvim-dap' " Debugging
Plug 'mbbill/undotree'
" Plug 'Konfekt/FastFold'
Plug 'windwp/nvim-spectre' " search and replace
"
Plug 'folke/which-key.nvim'
" Plug '/usr/local/opt/fzf'
" Plug 'junegunn/fzf.vim'
Plug 'nvim-telescope/telescope.nvim'
Plug 'nvim-telescope/telescope-fzf-native.nvim', { 'do': 'make' }
Plug 'fannheyward/telescope-coc.nvim'
Plug 'preservim/nerdtree'
Plug 'myusuf3/numbers.vim' " Betere lijnnummering
Plug 'lukas-reineke/indent-blankline.nvim' " Verticale lijnen
Plug 'numToStr/Comment.nvim'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-repeat' " repeat (.) toelaten met vim-surround en leap.nvim
Plug 'AndrewRadev/splitjoin.vim' " wisselen tss block/inline (ook vr hash) met gJ en gS go-join, go-split
Plug 'windwp/nvim-autopairs'
Plug 'ggandor/leap.nvim' " general-purpose motion plugin, s{c1}{c2}
Plug 'asiryk/auto-hlsearch.nvim' " auto remove search highlights
" }}}
" {{{ colorschemes
" Plug 'tjdevries/colorbuddy.vim'
" Plug 'Th3Whit3Wolf/onebuddy'
" Plug 'ishan9299/modus-theme-vim'
" Plug 'Th3Whit3Wolf/spacebuddy'
Plug 'rktjmp/lush.nvim'
Plug 'ellisonleao/gruvbox.nvim'
Plug 'rebelot/kanagawa.nvim'
Plug 'nvim-tree/nvim-web-devicons'
" }}}
" {{{ lsp
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'xiyaowong/coc-lightbulb'
Plug 'liuchengxu/vista.vim' " tagbar aan zijkant: :Vista
" }}}
" {{{ ai
" Plug 'aduros/ai.vim'
Plug 'Exafunction/codeium.vim', { 'branch': 'main' }
" Plug 'jackmort/chatgpt.nvim'
Plug 'magicalne/nvim.ai', {'branch': 'main'}
" }}}
" {{{ git
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-rhubarb' " github extensie voor vim-fugitive
Plug 'airblade/vim-gitgutter'
Plug 'pwntester/octo.nvim'
Plug 'samoshkin/vim-mergetool'
" }}}
" {{{ Testing
Plug 'jgdavey/tslime.vim'
Plug 'jgdavey/vim-turbux'
" }}}
" {{{ js / html / xml / css / ts(x) editing
Plug 'pangloss/vim-javascript'
Plug 'MaxMEllon/vim-jsx-pretty'
Plug 'leafgarland/typescript-vim'
Plug 'peitalin/vim-jsx-typescript'
Plug 'styled-components/vim-styled-components', { 'branch': 'main' }
Plug 'stephenway/postcss.vim'
Plug 'mattn/emmet-vim' " xml syntax editing
Plug 'othree/xml.vim' " xml/html
" Plug 'ap/vim-css-color' " markeren van kleuren in css bestanden in de juiste kleuren
Plug 'KabbAmine/vCoolor.vim' " kleuren invoegen (:VCoolor)
" }}}
" {{{ ruby
Plug 'vim-ruby/vim-ruby'
Plug 'tpope/vim-cucumber'
Plug 'tpope/vim-rails'
" Plug 'ecomba/vim-ruby-refactoring'
Plug 'tpope/vim-haml' " haml and sass runtime files
Plug 'lucapette/vim-ruby-doc' " ruby documentatie'
Plug 'henrik/vim-ruby-runner'
Plug 'RRethy/nvim-treesitter-endwise' " voeg end to aan blokken
" }}}
"
" {{{ pandoc/markdown
Plug 'vim-pandoc/vim-pantondoc' " Werken met markdown (pandoc eigenlijk)
Plug 'vim-pandoc/vim-pandoc-syntax'
Plug 'junegunn/goyo.vim' " writeroom, gebruik :Goyo
Plug 'reedes/vim-pencil' " markdown/writing, starten met :Pencil
Plug 'dhruvasagar/vim-table-mode' " tabellen maken https://github.com/dhruvasagar/vim-table-mode
Plug 'sotte/presenting.vim'
" }}}
" {{{ lisp/clojure
" Plug 'slimv.vim'
" Plug 'guns/vim-clojure-static'
" Plug 'tpope/vim-fireplace'
" }}}
Plug 'elzr/vim-json'
Plug 'mattn/gist-vim'
Plug 'mattn/webapi-vim' " nodig voor gist-vim
" Plug 'cohama/lexima.vim'
" utilities, soms nodig voor andere plugings
Plug 'tomtom/tlib_vim'
" Plug 'elixir-lang/vim-elixir' " voor elixir
" Plug 'rizzatti/funcoo.vim' " dash dependency
" Plug 'rizzatti/dash.vim'
Plug 'terryma/vim-expand-region' " v om steeds meer te selecteren
" Plug 'terryma/vim-multiple-cursors' multiple cursors
Plug 'mg979/vim-visual-multi' " multiple cursors
Plug 'tpope/vim-obsession'
Plug 'junegunn/vader.vim' " vimscript specs
Plug 'vimwiki/vimwiki'
call plug#end()