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

@ -12,6 +12,7 @@
"cmp_luasnip": { "branch": "master", "commit": "18095520391186d634a0045dacaa346291096566" },
"code_runner.nvim": { "branch": "main", "commit": "a010649236fe245eaab2641a13228cd601499715" },
"dressing.nvim": { "branch": "master", "commit": "5f44f829481640be0f96759c965ae22a3bcaf7ce" },
"fidget.nvim": { "branch": "main", "commit": "688b4fec4517650e29c3e63cfbb6e498b3112ba1" },
"friendly-snippets": { "branch": "main", "commit": "009887b76f15d16f69ae1341f86a7862f61cf2a1" },
"gitsigns.nvim": { "branch": "main", "commit": "bb808fc7376ed7bac0fbe8f47b83d4bf01738167" },
"impatient.nvim": { "branch": "main", "commit": "969f2c5c90457612c09cf2a13fee1adaa986d350" },
@ -19,7 +20,6 @@
"jaq-nvim": { "branch": "master", "commit": "236296aae555657487d1bb4d066cbde9d79d8cd4" },
"lazy.nvim": { "branch": "main", "commit": "5b4444f0d7e556deba3f7ca949a2ba0e2c3369fb" },
"live-server": { "branch": "main", "commit": "ecd7c1418823b65dd2bca710587c80afe42c973e" },
"lsp-progress.nvim": { "branch": "main", "commit": "4c0ca0922564df696597ffd7ce16b01d061872e6" },
"lualine.nvim": { "branch": "master", "commit": "e99d733e0213ceb8f548ae6551b04ae32e590c80" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "a81503f0019942111fe464209237f8b4e85f4687" },
"mason-null-ls.nvim": { "branch": "main", "commit": "29ce60f9a16fef3de682a9365ef635f24ae92bf9" },

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,
-- },
}