NVtui config.
This commit is contained in:
parent
4949188076
commit
6c30aee0c0
@ -4,33 +4,28 @@
|
|||||||
---@type ChadrcConfig
|
---@type ChadrcConfig
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.ui = {
|
M.base46 = {
|
||||||
theme = "monekai",
|
|
||||||
|
|
||||||
hl_override = {
|
hl_override = {
|
||||||
ColorColumn = { bg = "#770000" },
|
ColorColumn = { bg = "#770000" },
|
||||||
Comment = { italic = true, },
|
Comment = { italic = true, },
|
||||||
DiffChange = { bg = "NONE", fg = "#e7c547" },
|
DiffChange = { bg = "NONE", fg = "#e7c547" },
|
||||||
DiffText = { bg = "NONE", fg = "#ff8700" },
|
DiffText = { bg = "NONE", fg = "#ff8700" },
|
||||||
FoldColumn = { bg = "NONE" },
|
|
||||||
NonText = { bg = "NONE" },
|
|
||||||
Normal = { bg = "NONE" },
|
|
||||||
NormalFloat = { bg = "NONE" },
|
|
||||||
SignColumn = { bg = "NONE" },
|
|
||||||
SpellBad = { bg = "#770000", fg = "#ffffff" },
|
SpellBad = { bg = "#770000", fg = "#ffffff" },
|
||||||
TelescopeNormal = { bg = "NONE" },
|
|
||||||
Visual = { bg = "#0094d8", fg = "#ffffff" },
|
Visual = { bg = "#0094d8", fg = "#ffffff" },
|
||||||
},
|
},
|
||||||
|
theme = "monekai",
|
||||||
|
transparency = false
|
||||||
|
}
|
||||||
|
|
||||||
|
M.ui = {
|
||||||
statusline = {
|
statusline = {
|
||||||
theme = "vscode_colored",
|
theme = "vscode_colored",
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
M.mason = {
|
M.mason = {
|
||||||
cmd = true,
|
cmd = true,
|
||||||
pkgs = {"lua-language-server"}
|
pkgs = { "lua-language-server" }
|
||||||
}
|
}
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
3
config/nvim/lua/init.lua
Normal file
3
config/nvim/lua/init.lua
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
vim.g.base46_cache = vim.fn.stdpath "data" .. "/base46_cache/"
|
||||||
|
dofile(vim.g.base46_cache .. "defaults")
|
||||||
|
dofile(vim.g.base46_cache .. "statusline")
|
@ -1,12 +1,28 @@
|
|||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"stevearc/conform.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
-- event = 'BufWritePre', -- uncomment for format on save
|
{
|
||||||
config = function()
|
"nvchad/ui",
|
||||||
require "configs.conform"
|
config = function()
|
||||||
end,
|
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",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
opts = {
|
opts = {
|
||||||
@ -21,6 +37,7 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
}
|
||||||
|
|
||||||
-- These are some examples, uncomment them if you want to see them work!
|
-- These are some examples, uncomment them if you want to see them work!
|
||||||
-- {
|
-- {
|
||||||
@ -53,4 +70,3 @@ return {
|
|||||||
-- "mg979/vim-visual-multi",
|
-- "mg979/vim-visual-multi",
|
||||||
-- lazy = false,
|
-- lazy = false,
|
||||||
-- }
|
-- }
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user