mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
add: update config
This commit is contained in:
parent
6da1a73df0
commit
b318ced2cf
1 changed files with 42 additions and 38 deletions
|
@ -151,10 +151,13 @@ return {
|
||||||
lsp_progress = lspprogress.progress
|
lsp_progress = lspprogress.progress
|
||||||
end
|
end
|
||||||
-- stylua: ignore
|
-- stylua: ignore
|
||||||
local is_transparat=true
|
local onedark=vim.fn.fnamemodify("auto", ":t")
|
||||||
local colors = require("onedarkpro.helpers").get_colors("onedark")
|
local is_transparat = true
|
||||||
|
local status_ok, onedarkpro = pcall(require, "onedarkpro.helpers")
|
||||||
|
if status_ok then
|
||||||
|
local colors = onedarkpro.get_colors("onedark")
|
||||||
|
|
||||||
local onedark = {
|
onedark = {
|
||||||
normal = {
|
normal = {
|
||||||
a = { bg = colors.green, fg = colors.bg },
|
a = { bg = colors.green, fg = colors.bg },
|
||||||
b = { bg = colors.fg_gutter, fg = colors.green },
|
b = { bg = colors.fg_gutter, fg = colors.green },
|
||||||
|
@ -193,6 +196,7 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
end
|
||||||
|
|
||||||
require("lualine").setup({
|
require("lualine").setup({
|
||||||
options = {
|
options = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue