Initial commit
This commit is contained in:
40
home/apps/nvim/lua/plugins/visual.lua
Normal file
40
home/apps/nvim/lua/plugins/visual.lua
Normal file
@@ -0,0 +1,40 @@
|
||||
return {
|
||||
{
|
||||
"lewis6991/gitsigns.nvim",
|
||||
event = "VeryLazy",
|
||||
config = true,
|
||||
},
|
||||
{
|
||||
name = "center",
|
||||
dir = vim.fn.stdpath("config") .. "/lua/center",
|
||||
config = function()
|
||||
require("center").setup({
|
||||
enabled = true,
|
||||
skip_filetypes = {
|
||||
"buffer_manager",
|
||||
},
|
||||
})
|
||||
end
|
||||
},
|
||||
{
|
||||
"stevearc/dressing.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
input = {
|
||||
border = require("globals").border_chars,
|
||||
},
|
||||
select = {
|
||||
builtin = {
|
||||
border = require("globals").border_chars,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
opts = {
|
||||
color_icons = true,
|
||||
default = true,
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user