add global for transparency and fix (#1164)
vim matchup was causing #1164 as we lazy load it and its a lil high on startup so I removed it, gotta wait till v0.8 releases and then we could use winbar.nvim instead
This commit is contained in:
parent
b828b677bd
commit
77c1287db8
|
@ -1,12 +1,15 @@
|
||||||
local opt = vim.opt
|
local opt = vim.opt
|
||||||
local g = vim.g
|
local g = vim.g
|
||||||
|
|
||||||
g.nvchad_theme = require("core.utils").load_config().ui.theme
|
local config = require("core.utils").load_config()
|
||||||
|
|
||||||
|
g.nvchad_theme = config.ui.theme
|
||||||
|
|
||||||
-- use filetype.lua instead of filetype.vim
|
-- use filetype.lua instead of filetype.vim
|
||||||
g.did_load_filetypes = 0
|
g.did_load_filetypes = 0
|
||||||
g.do_filetype_lua = 1
|
g.do_filetype_lua = 1
|
||||||
g.toggle_theme_icon = " "
|
g.toggle_theme_icon = " "
|
||||||
|
g.transparency = config.ui.transparency
|
||||||
|
|
||||||
opt.confirm = true
|
opt.confirm = true
|
||||||
opt.laststatus = 3 -- global statusline
|
opt.laststatus = 3 -- global statusline
|
||||||
|
@ -86,4 +89,4 @@ vim.schedule(function()
|
||||||
end)
|
end)
|
||||||
|
|
||||||
-- load user options if the file exists
|
-- load user options if the file exists
|
||||||
require("core.utils").load_config().options.user()
|
config.options.user()
|
||||||
|
|
|
@ -105,13 +105,6 @@ local plugins = {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
["andymass/vim-matchup"] = {
|
|
||||||
opt = true,
|
|
||||||
setup = function()
|
|
||||||
require("core.utils").packer_lazy_load "vim-matchup"
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
["max397574/better-escape.nvim"] = {
|
["max397574/better-escape.nvim"] = {
|
||||||
event = "InsertCharPre",
|
event = "InsertCharPre",
|
||||||
config = function()
|
config = function()
|
||||||
|
|
Loading…
Reference in New Issue