Compare commits

..

No commits in common. "7a42e0f2a36ed938450911afb0794e50406a61c9" and "44959439fe000926a0fcde804025db8d41ab5639" have entirely different histories.

3 changed files with 6 additions and 8 deletions

View File

@ -87,10 +87,8 @@ autocmd("BufWritePost", {
local config = require "nvconfig"
-- statusline
if config.ui.statusline.theme ~= "custom" then
require("plenary.reload").reload_module("nvchad.statusline." .. config.ui.statusline.theme)
vim.opt.statusline = "%!v:lua.require('nvchad.statusline." .. config.ui.statusline.theme .. "').run()"
end
-- tabufline
if config.ui.tabufline.enabled then

View File

@ -6,7 +6,7 @@ local default_plugins = {
{
"NvChad/base46",
branch = "v3.0",
branch = "dev",
build = function()
require("base46").load_all_highlights()
end,
@ -14,7 +14,7 @@ local default_plugins = {
{
"NvChad/ui",
branch = "v3.0",
branch = "dev",
lazy = false,
config = function()
require "nvchad"
@ -246,7 +246,7 @@ local default_plugins = {
-- Only load whichkey after all the gui
{
"folke/which-key.nvim",
keys = { "<leader>", "<c-r>", "<c-w>", '"', "'", "`", "c", "v", "g" },
keys = { "<leader>", "<c-r>", '"', "'", "`", "c", "v", "g" },
init = function()
require("core.utils").load_mappings "whichkey"
end,