-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.lua
192 lines (169 loc) · 5.74 KB
/
plugins.lua
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
-- This file can be loaded by calling `lua require('plugins')` from your init.vim
-- Only required if you have packer configured as `opt`
vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function(use)
-- Packer can manage itself
use 'wbthomason/packer.nvim'
use 'JoosepAlviste/palenightfall.nvim'
use { 'dracula/vim', as = 'dracula' }
use 'preservim/nerdcommenter'
use 'flazz/vim-colorschemes'
use {
"folke/todo-comments.nvim",
--branch = "neovim-pre-0.8.0",
requires = "nvim-lua/plenary.nvim",
event = "BufRead",
config = function()
require("todo-comments").setup {
signs = true,
}
end,
opt = false
}
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
use {
"nvim-neo-tree/neo-tree.nvim",
branch = "v2.x",
requires = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
}
}
use 'JoosepAlviste/nvim-ts-context-commentstring'
use 'mbbill/undotree'
use 'tpope/vim-fugitive'
use 'tpope/vim-repeat'
use {
'lewis6991/gitsigns.nvim',
-- tag = 'release' -- To use the latest release (do not use this if you run Neovim nightly or dev builds!)
config = function()
require('gitsigns').setup {
on_attach = function(bufnr)
local gs = package.loaded.gitsigns
local function map(mode, l, r, opts)
opts = opts or {}
opts.buffer = bufnr
vim.keymap.set(mode, l, r, opts)
end
-- Navigation
map('n', ']c', function()
if vim.wo.diff then return ']c' end
vim.schedule(function() gs.next_hunk() end)
return '<Ignore>'
end, {expr=true})
map('n', '[c', function()
if vim.wo.diff then return '[c' end
vim.schedule(function() gs.prev_hunk() end)
return '<Ignore>'
end, {expr=true})
-- Actions
map({'n', 'v'}, '<leader>hs', ':Gitsigns stage_hunk<CR>')
map({'n', 'v'}, '<leader>hr', ':Gitsigns reset_hunk<CR>')
map('n', '<leader>hS', gs.stage_buffer)
map('n', '<leader>hu', gs.undo_stage_hunk)
map('n', '<leader>hR', gs.reset_buffer)
map('n', '<leader>hp', gs.preview_hunk)
map('n', '<leader>hb', function() gs.blame_line{full=true} end)
map('n', '<leader>tb', gs.toggle_current_line_blame)
map('n', '<leader>hd', gs.diffthis)
map('n', '<leader>hD', function() gs.diffthis('~') end)
map('n', '<leader>td', gs.toggle_deleted)
-- Text object
map({'o', 'x'}, 'ih', ':<C-U>Gitsigns select_hunk<CR>')
end
}
end
}
-- Lazy loading:
-- Load on specific commands
--use {'tpope/vim-dispatch', opt = true, cmd = {'Dispatch', 'Make', 'Focus', 'Start'}}
-- Load on an autocommand event
use { 'andymass/vim-matchup', event = 'VimEnter' }
-- Post-install/update hook with neovim command
use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' }
use {
'williamboman/mason.nvim',
opt = false,
config = function()
require('mason').setup{}
end,
}
use 'mason-org/mason-registry'
use {
'williamboman/mason-lspconfig.nvim',
opt = false,
config = function()
require('mason-lspconfig').setup()
end,
}
use {
'neovim/nvim-lspconfig',
config = function()
local lsps = require('lspconfig')
lsps.clangd.setup{}
lsps.lua_ls.setup{}
end
}
use 'mfussenegger/nvim-dap'
use 'mfussenegger/nvim-lint'
use { 'mhartington/formatter.nvim', opt = false }
use {
'phaazon/hop.nvim',
branch = 'v2',
config = function()
-- you can configure Hop the way you like here; see :h hop-config
require'hop'.setup {
keys = 'qsdfghjklmazertyuiopwxcvbn',
quit_key = '<ESC>',
}
end,
}
use {
"windwp/nvim-autopairs",
config = function()
require("nvim-autopairs").setup()
end
}
use 'editorconfig/editorconfig-vim'
-- Load on a combination of conditions: specific filetypes or commands
-- Also run code after load (see the "config" key)
--use {
--'w0rp/ale',
--ft = {'sh', 'zsh', 'bash', 'c', 'cpp', 'cmake', 'html', 'markdown', 'racket', 'vim', 'tex'},
--cmd = 'ALEEnable',
--config = 'vim.cmd[[ALEEnable]]'
--}
-- Plugins can have dependencies on other plugins
--use {
--'haorenW1025/completion-nvim',
--opt = true,
--requires = {{'hrsh7th/vim-vsnip', opt = true}, {'hrsh7th/vim-vsnip-integ', opt = true}}
--}
-- Plugins can also depend on rocks from luarocks.org:
--use {
--'my/supercoolplugin',
--rocks = {'lpeg', {'lua-cjson', version = '2.1.0'}}
--}
-- You can specify rocks in isolation
--use_rocks 'penlight'
--use_rocks {'lua-resty-http', 'lpeg'}
-- Local plugins can be included
--use '~/projects/personal/hover.nvim'
-- Plugins can have post-install/update hooks
--use {'iamcco/markdown-preview.nvim', run = 'cd app && yarn install', cmd = 'MarkdownPreview'}
-- Post-install/update hook with call of vimscript function with argument
--use { 'glacambre/firenvim', run = function() vim.fn['firenvim#install'](0) end }
-- Use specific branch, dependency and run lua file after load
--use {
--'glepnir/galaxyline.nvim', branch = 'main', config = function() require'statusline' end,
--requires = {'kyazdani42/nvim-web-devicons'}
--}
-- Use dependency and run lua function after load
--use {
--'lewis6991/gitsigns.nvim', requires = { 'nvim-lua/plenary.nvim' },
--config = function() require('gitsigns').setup() end
--}
-- You can specify multiple plugins in a single call
--use {'tjdevries/colorbuddy.vim', {'nvim-treesitter/nvim-treesitter', opt = true}}
end)