Split out plugins and extra config
This commit is contained in:
parent
162b44a00a
commit
25a94d9353
9 changed files with 124 additions and 88 deletions
|
|
@ -2,4 +2,7 @@
|
|||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {}
|
||||
return {
|
||||
'mg979/vim-visual-multi',
|
||||
'nvim-treesitter/nvim-treesitter-context',
|
||||
}
|
||||
|
|
|
|||
6
lua/custom/plugins/nvim-autopairs.lua
Normal file
6
lua/custom/plugins/nvim-autopairs.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
{
|
||||
'windwp/nvim-autopairs',
|
||||
opts = {}
|
||||
}
|
||||
}
|
||||
6
lua/custom/plugins/nvim-surround.lua
Normal file
6
lua/custom/plugins/nvim-surround.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
{
|
||||
'kylechui/nvim-surround',
|
||||
opts = { config = {} }
|
||||
}
|
||||
}
|
||||
11
lua/custom/plugins/nvim-tree.lua
Normal file
11
lua/custom/plugins/nvim-tree.lua
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
return {
|
||||
{
|
||||
'nvim-tree/nvim-tree.lua',
|
||||
opts = {
|
||||
sort_by = "case_sensitive",
|
||||
view = { width = 30, },
|
||||
renderer = { group_empty = true, },
|
||||
filters = { dotfiles = true, },
|
||||
}
|
||||
}
|
||||
}
|
||||
26
lua/custom/plugins/toggleterm.lua
Normal file
26
lua/custom/plugins/toggleterm.lua
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
return {
|
||||
{
|
||||
'akinsho/toggleterm.nvim',
|
||||
opts = {
|
||||
version = "*",
|
||||
size = 20,
|
||||
open_mapping = [[c-\]],
|
||||
hide_numbers = true,
|
||||
shading_factor = 2,
|
||||
start_in_insert = true,
|
||||
insert_mappings = true,
|
||||
persist_size = true,
|
||||
direction = "float",
|
||||
close_on_exit = true,
|
||||
shel = vim.o.shell,
|
||||
float_opts = {
|
||||
border = "curved",
|
||||
winblend = 0,
|
||||
highlights = {
|
||||
border = "Normal",
|
||||
background = "Normal",
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
7
lua/custom/plugins/treesj.lua
Normal file
7
lua/custom/plugins/treesj.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
{
|
||||
'Wansmer/treesj',
|
||||
dependencies = { 'nvim-treesitter/nvim-treesitter' },
|
||||
opts = {},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue