NVtui config.

This commit is contained in:
Bartek Stalewski 2024-11-03 16:35:36 +01:00
parent 4949188076
commit 6c30aee0c0
No known key found for this signature in database
3 changed files with 32 additions and 18 deletions

View file

@ -1,12 +1,28 @@
return {
{
"stevearc/conform.nvim",
-- event = 'BufWritePre', -- uncomment for format on save
config = function()
require "configs.conform"
end,
"nvim-lua/plenary.nvim",
{
"nvchad/ui",
config = function()
require "nvchad"
end
},
{
"nvchad/base46",
lazy = true,
build = function()
require("base46").load_all_highlights()
end,
},
"nvchad/volt", -- optional, needed for theme switcher
},
{
"stevearc/conform.nvim",
-- event = 'BufWritePre', -- uncomment for format on save
config = function()
require "configs.conform"
end,
},
{
"nvim-treesitter/nvim-treesitter",
opts = {
@ -21,6 +37,7 @@ return {
},
},
},
}
-- These are some examples, uncomment them if you want to see them work!
-- {
@ -53,4 +70,3 @@ return {
-- "mg979/vim-visual-multi",
-- lazy = false,
-- }
}