This commit is contained in:
asep komarudin 2023-03-12 16:28:26 +07:00
parent f8d0cf2da0
commit d9d2af05a3
5 changed files with 12 additions and 14 deletions

View file

@ -22,4 +22,4 @@
-- 1 startify model
-- 2 dashboard model
vim.g.pcode_model = 2 -- isi dengan 1 atau 2 untuk model dashboard
vim.g.pcode_model = 1 -- isi dengan 1 atau 2 untuk model dashboard

View file

@ -31,7 +31,7 @@ vim.g.pcode_transparent_mode = 0
-- 0 disable progress
-- 1 lualine lsp progress
-- 2 fidget progress
vim.g.pcode_progress = 1
vim.g.pcode_progress = 2
-- style
-- 0 = default

View file

@ -6,8 +6,7 @@ return {
dependencies = {
"MunifTanjim/nui.nvim",
},
-- event = "BufWinEnter",
event = "VeryLazy",
event = "BufWinEnter",
opts = {
messages = {
enabled = false,
@ -101,7 +100,6 @@ return {
},
{
"hrsh7th/cmp-cmdline",
-- event = "BufWinEnter",
event = "VeryLazy",
config = function()
local cmp = require("cmp")

View file

@ -9,12 +9,12 @@ return {
require("symbols-outline").setup()
end,
},
{
"nvim-lualine/lualine.nvim",
lazy = true,
event = "BufWinEnter",
config = function()
require("user.lualine")
end,
},
-- {
-- "nvim-lualine/lualine.nvim",
-- lazy = true,
-- event = "BufWinEnter",
-- config = function()
-- require("user.lualine")
-- end,
-- },
}