2023-02-11 09:41:39 +07:00
|
|
|
-- local build = "powershell ./install.ps1"
|
|
|
|
-- if vim.fn.has("win32") == 0 then
|
|
|
|
-- build = "./install.sh"
|
|
|
|
-- end
|
2023-01-15 00:17:41 +07:00
|
|
|
return {
|
2023-02-05 09:09:33 +07:00
|
|
|
-- plugin ini merupakan penyedia library neovim lua
|
2023-01-15 00:22:51 +07:00
|
|
|
{
|
2023-01-15 00:17:41 +07:00
|
|
|
"nvim-lua/plenary.nvim",
|
2023-02-11 09:41:39 +07:00
|
|
|
lazy = true,
|
2023-01-15 00:17:41 +07:00
|
|
|
},
|
2023-02-05 09:09:33 +07:00
|
|
|
-- coding start
|
|
|
|
-- coloring code
|
2023-01-15 00:22:51 +07:00
|
|
|
{
|
2023-02-04 13:57:50 +07:00
|
|
|
"nvim-treesitter/nvim-treesitter",
|
2023-02-09 13:22:54 +07:00
|
|
|
event = "BufRead",
|
2023-02-22 07:31:52 +07:00
|
|
|
priority = 1000,
|
2023-02-05 01:44:41 +07:00
|
|
|
cmd = {
|
|
|
|
"TSBufDisable",
|
|
|
|
"TSBufEnable",
|
|
|
|
"TSBufToggle",
|
|
|
|
"TSDisable",
|
|
|
|
"TSEnable",
|
|
|
|
"TSToggle",
|
|
|
|
"TSInstall",
|
|
|
|
"TSInstallInfo",
|
|
|
|
"TSInstallSync",
|
|
|
|
"TSModuleInfo",
|
|
|
|
"TSUninstall",
|
|
|
|
"TSUpdate",
|
|
|
|
"TSUpdateSync",
|
|
|
|
},
|
2023-02-20 22:53:49 +07:00
|
|
|
build = function()
|
|
|
|
local status_ok, ts = pcall(require, "nvim-treesitter.install")
|
|
|
|
if not status_ok then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
ts.update({ with_sync = true })()
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
local status_ok, _ = pcall(require, "nvim-treesitter")
|
|
|
|
if not status_ok then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
require("user.treesitter")
|
|
|
|
end,
|
2023-01-15 00:17:41 +07:00
|
|
|
},
|
2023-02-04 13:57:50 +07:00
|
|
|
-- snippets
|
2023-01-15 00:17:41 +07:00
|
|
|
{
|
2023-02-04 13:57:50 +07:00
|
|
|
"L3MON4D3/LuaSnip",
|
|
|
|
dependencies = {
|
|
|
|
"rafamadriz/friendly-snippets",
|
|
|
|
config = function()
|
|
|
|
require("luasnip.loaders.from_vscode").lazy_load()
|
2023-02-19 12:18:29 +07:00
|
|
|
require("user.snip")
|
2023-02-04 13:57:50 +07:00
|
|
|
end,
|
|
|
|
},
|
|
|
|
opts = {
|
|
|
|
history = true,
|
|
|
|
delete_check_events = "TextChanged",
|
|
|
|
},
|
|
|
|
-- stylua: ignore
|
|
|
|
keys = {
|
|
|
|
{
|
|
|
|
"<tab>",
|
|
|
|
function()
|
|
|
|
return require("luasnip").jumpable(1) and "<Plug>luasnip-jump-next" or "<tab>"
|
|
|
|
end,
|
|
|
|
expr = true, silent = true, mode = "i",
|
|
|
|
},
|
|
|
|
{ "<tab>", function() require("luasnip").jump(1) end, mode = "s" },
|
|
|
|
{ "<s-tab>", function() require("luasnip").jump(-1) end, mode = { "i", "s" } },
|
|
|
|
},
|
2023-01-15 00:17:41 +07:00
|
|
|
},
|
2023-02-11 09:41:39 +07:00
|
|
|
-- -- auto completion (dipindah supaya loading lebih cepat)
|
|
|
|
-- {
|
|
|
|
-- "hrsh7th/nvim-cmp",
|
|
|
|
-- version = false, -- last release is way too old
|
|
|
|
-- event = "InsertEnter",
|
|
|
|
-- dependencies = {
|
|
|
|
-- "hrsh7th/cmp-nvim-lsp",
|
|
|
|
-- "hrsh7th/cmp-buffer",
|
|
|
|
-- "hrsh7th/cmp-path",
|
|
|
|
-- "saadparwaiz1/cmp_luasnip",
|
|
|
|
-- "hrsh7th/cmp-nvim-lua",
|
|
|
|
-- {
|
|
|
|
-- "tzachar/cmp-tabnine",
|
|
|
|
-- build = build,
|
|
|
|
-- event = "BufWinEnter",
|
|
|
|
-- config = function()
|
|
|
|
-- require("user.tabnine")
|
|
|
|
-- end,
|
|
|
|
-- },
|
|
|
|
-- -- {
|
|
|
|
-- -- "hrsh7th/cmp-cmdline",
|
|
|
|
-- -- event = "BufWinEnter",
|
|
|
|
-- -- config = function()
|
|
|
|
-- -- require("user.cmdline")
|
|
|
|
-- -- end,
|
|
|
|
-- -- },
|
|
|
|
-- },
|
|
|
|
-- opts = function()
|
|
|
|
-- require("user.cmp")
|
|
|
|
-- end,
|
|
|
|
-- },
|
|
|
|
--
|
2023-01-15 00:22:51 +07:00
|
|
|
{
|
2023-02-11 09:41:39 +07:00
|
|
|
"neovim/nvim-lspconfig",
|
2023-02-09 13:22:54 +07:00
|
|
|
event = "BufWinEnter",
|
2023-02-04 13:57:50 +07:00
|
|
|
dependencies = {
|
2023-02-11 09:41:39 +07:00
|
|
|
"williamboman/mason-lspconfig.nvim",
|
2023-02-04 13:57:50 +07:00
|
|
|
},
|
2023-01-17 13:36:46 +07:00
|
|
|
config = function()
|
2023-01-15 00:17:41 +07:00
|
|
|
require("user.lsp")
|
|
|
|
end,
|
|
|
|
},
|
2023-02-11 09:41:39 +07:00
|
|
|
-- {
|
|
|
|
-- "williamboman/mason.nvim",
|
|
|
|
-- event = "VeryLazy",
|
|
|
|
-- cmd = {
|
|
|
|
-- "Mason",
|
|
|
|
-- "MasonInstall",
|
|
|
|
-- "MasonUninstall",
|
|
|
|
-- "MasonUninstallAll",
|
|
|
|
-- "MasonLog",
|
|
|
|
-- },
|
|
|
|
-- dependencies = { "williamboman/mason-lspconfig.nvim" },
|
|
|
|
-- init = function()
|
|
|
|
-- vim.tbl_map(function(plugin)
|
|
|
|
-- pcall(require, plugin)
|
|
|
|
-- end, { "lspconfig", "null-ls" })
|
|
|
|
-- end,
|
|
|
|
-- },
|
2023-01-15 00:17:41 +07:00
|
|
|
{
|
|
|
|
"williamboman/mason.nvim",
|
2023-02-11 09:41:39 +07:00
|
|
|
cmd = "Mason",
|
|
|
|
keys = { { "<leader>cm", "<cmd>Mason<cr>", desc = "Mason" } },
|
2023-01-15 00:17:41 +07:00
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for formater linter
|
2023-02-09 13:22:54 +07:00
|
|
|
{ "RRethy/vim-illuminate", event = "BufRead" },
|
2023-01-21 11:01:35 +07:00
|
|
|
{
|
|
|
|
"jayp0521/mason-null-ls.nvim",
|
|
|
|
dependencies = "jose-elias-alvarez/null-ls.nvim",
|
|
|
|
event = "BufRead",
|
|
|
|
opts = function()
|
|
|
|
require("user.mason-null-ls")
|
|
|
|
end,
|
|
|
|
},
|
2023-02-04 13:57:50 +07:00
|
|
|
-- debuging
|
|
|
|
{
|
|
|
|
"rcarriga/nvim-dap-ui",
|
2023-02-19 19:20:01 +07:00
|
|
|
event = "BufWinEnter",
|
2023-02-04 13:57:50 +07:00
|
|
|
dependencies = "mfussenegger/nvim-dap",
|
|
|
|
enabled = vim.fn.has("win32") == 0,
|
|
|
|
config = function()
|
|
|
|
require("user.dapui")
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"jayp0521/mason-nvim-dap.nvim",
|
|
|
|
event = "VeryLazy",
|
|
|
|
dependencies = { "williamboman/mason.nvim", "mfussenegger/nvim-dap" },
|
|
|
|
enabled = vim.fn.has("win32") == 0,
|
|
|
|
init = function()
|
|
|
|
require("user.mason_dap")
|
|
|
|
end,
|
|
|
|
},
|
2023-02-05 09:09:33 +07:00
|
|
|
-- for install lsp tidak support mason
|
2023-02-04 13:57:50 +07:00
|
|
|
{ "williamboman/nvim-lsp-installer", event = "VeryLazy" },
|
2023-02-05 09:09:33 +07:00
|
|
|
-- auto pairs
|
|
|
|
{
|
|
|
|
"windwp/nvim-autopairs",
|
2023-02-05 11:47:31 +07:00
|
|
|
commit = "4fc96c8f3df89b6d23e5092d31c866c53a346347",
|
2023-02-05 09:09:33 +07:00
|
|
|
dependencies = "hrsh7th/nvim-cmp",
|
2023-02-05 12:50:48 +07:00
|
|
|
event = "InsertEnter",
|
|
|
|
config = function()
|
2023-02-05 09:09:33 +07:00
|
|
|
require("user.autopairs")
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
-- untuk comment
|
2023-02-21 07:32:15 +07:00
|
|
|
{
|
|
|
|
"JoosepAlviste/nvim-ts-context-commentstring",
|
|
|
|
event = "BufRead",
|
|
|
|
dependencies = "nvim-treesitter/nvim-treesitter",
|
|
|
|
},
|
2023-02-05 09:09:33 +07:00
|
|
|
{
|
|
|
|
"numToStr/Comment.nvim",
|
2023-02-09 13:22:54 +07:00
|
|
|
event = "BufRead",
|
|
|
|
config = function()
|
2023-02-05 09:09:33 +07:00
|
|
|
require("user.comment")
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
-- better todo coloring and icon
|
|
|
|
{
|
|
|
|
"folke/todo-comments.nvim",
|
|
|
|
event = "BufRead",
|
|
|
|
config = function()
|
|
|
|
require("todo-comments").setup()
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
-- styleing indent
|
|
|
|
{
|
|
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
|
|
event = "BufRead",
|
2023-02-09 13:22:54 +07:00
|
|
|
config = function()
|
2023-02-05 09:09:33 +07:00
|
|
|
require("user.indentline")
|
|
|
|
end,
|
|
|
|
},
|
2023-02-04 13:57:50 +07:00
|
|
|
-- { "ahmedkhalf/project.nvim", commit = "628de7e433dd503e782831fe150bb750e56e55d6", event = "VeryLazy" },
|
2023-02-05 09:09:33 +07:00
|
|
|
-- for Speed up loading Lua modules in Neovim to improve startup time.
|
2023-02-04 13:57:50 +07:00
|
|
|
{
|
|
|
|
"lewis6991/impatient.nvim",
|
2023-02-09 13:22:54 +07:00
|
|
|
event = "BufRead",
|
|
|
|
config = function()
|
2023-02-04 13:57:50 +07:00
|
|
|
require("user.impatient")
|
|
|
|
end,
|
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for live server html,css,js
|
2023-02-21 18:19:24 +07:00
|
|
|
{
|
|
|
|
"manzeloth/live-server",
|
|
|
|
cmd = { "LiveServer" },
|
|
|
|
event = "BufRead",
|
|
|
|
build = "npm install -g live-server",
|
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for multi cursor select
|
2023-02-09 13:22:54 +07:00
|
|
|
{ "mg979/vim-visual-multi", event = "BufRead" },
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for auto close tag
|
2023-02-20 23:04:23 +07:00
|
|
|
{
|
|
|
|
"windwp/nvim-ts-autotag",
|
|
|
|
event = "BufRead",
|
|
|
|
dependencies = "nvim-treesitter/nvim-treesitter",
|
|
|
|
config = function()
|
|
|
|
require("nvim-ts-autotag").setup()
|
|
|
|
end,
|
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for auto detection file and run code
|
2023-01-15 00:17:41 +07:00
|
|
|
{
|
|
|
|
"CRAG666/code_runner.nvim",
|
2023-02-09 13:22:54 +07:00
|
|
|
event = "BufRead",
|
2023-02-11 09:41:39 +07:00
|
|
|
-- dependencies = "nvim-lua/plenary.nvim",
|
2023-01-15 00:17:41 +07:00
|
|
|
cmd = { "RunCode", "RunFile", "RunProject", "RunClose" },
|
|
|
|
config = function()
|
|
|
|
require("user.coderunner")
|
|
|
|
end,
|
|
|
|
},
|
2023-01-21 11:43:43 +07:00
|
|
|
{
|
|
|
|
"is0n/jaq-nvim",
|
2023-02-09 13:22:54 +07:00
|
|
|
event = "BufRead",
|
2023-01-21 11:43:43 +07:00
|
|
|
config = function()
|
|
|
|
require("user.jaq")
|
|
|
|
end,
|
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for color view
|
2023-01-15 00:17:41 +07:00
|
|
|
{
|
|
|
|
"NvChad/nvim-colorizer.lua",
|
2023-02-09 13:22:54 +07:00
|
|
|
event = "BufRead",
|
2023-01-15 00:17:41 +07:00
|
|
|
opts = function()
|
|
|
|
require("user.colorizer")
|
|
|
|
end,
|
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for winbar icon
|
2023-01-15 00:17:41 +07:00
|
|
|
{
|
|
|
|
"SmiteshP/nvim-navic",
|
|
|
|
dependencies = "neovim/nvim-lspconfig",
|
|
|
|
event = "BufRead",
|
|
|
|
config = function()
|
|
|
|
require("user.breadcrumb")
|
|
|
|
require("user.winbar")
|
|
|
|
end,
|
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for popup alert
|
2023-01-15 00:17:41 +07:00
|
|
|
{
|
|
|
|
"rcarriga/nvim-notify",
|
2023-02-12 21:35:02 +07:00
|
|
|
event = "BufWinEnter",
|
2023-01-15 00:17:41 +07:00
|
|
|
config = function()
|
2023-01-28 12:19:19 +07:00
|
|
|
local notify = require("notify")
|
|
|
|
-- this for transparency
|
|
|
|
notify.setup({ background_colour = "#000000" })
|
|
|
|
-- this overwrites the vim notify function
|
|
|
|
vim.notify = notify.notify
|
2023-01-15 00:17:41 +07:00
|
|
|
end,
|
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for resize screen
|
2023-01-15 00:17:41 +07:00
|
|
|
{
|
|
|
|
"mrjones2014/smart-splits.nvim",
|
|
|
|
event = "BufWinEnter",
|
|
|
|
config = function()
|
|
|
|
require("user.smartspit")
|
|
|
|
end,
|
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for popup input
|
2023-01-15 00:17:41 +07:00
|
|
|
{
|
|
|
|
"stevearc/dressing.nvim",
|
|
|
|
event = "BufWinEnter",
|
|
|
|
config = function()
|
|
|
|
require("user.dressing")
|
|
|
|
end,
|
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- mini scrollview
|
2023-01-15 00:17:41 +07:00
|
|
|
{
|
|
|
|
"karb94/neoscroll.nvim",
|
2023-02-09 13:22:54 +07:00
|
|
|
event = "BufRead",
|
2023-01-15 00:17:41 +07:00
|
|
|
config = function()
|
|
|
|
require("user.neoscroll")
|
|
|
|
end,
|
|
|
|
},
|
2023-01-15 00:22:51 +07:00
|
|
|
{
|
2023-01-15 00:17:41 +07:00
|
|
|
"dstein64/nvim-scrollview",
|
|
|
|
event = "BufRead",
|
|
|
|
config = function()
|
|
|
|
require("user.nvimscroll")
|
|
|
|
end,
|
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for manage and coloring copy
|
2023-01-15 00:17:41 +07:00
|
|
|
{
|
|
|
|
"gbprod/yanky.nvim",
|
|
|
|
event = "BufRead",
|
|
|
|
config = function()
|
|
|
|
require("user.yanky")
|
|
|
|
end,
|
|
|
|
},
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for check startuptime
|
2023-02-09 13:22:54 +07:00
|
|
|
{ "dstein64/vim-startuptime", cmd = "StartupTime", event = "BufRead" },
|
2023-01-21 11:01:35 +07:00
|
|
|
-- for coloring pairs
|
2023-02-21 07:32:15 +07:00
|
|
|
{
|
|
|
|
"p00f/nvim-ts-rainbow",
|
|
|
|
event = "BufRead",
|
|
|
|
dependencies = "nvim-treesitter/nvim-treesitter",
|
|
|
|
},
|
2023-02-05 09:09:33 +07:00
|
|
|
-- for git
|
2023-01-15 00:17:41 +07:00
|
|
|
{
|
|
|
|
"lewis6991/gitsigns.nvim",
|
2023-01-17 13:36:46 +07:00
|
|
|
enabled = vim.fn.executable("git") == 1,
|
2023-01-15 00:17:41 +07:00
|
|
|
ft = "gitcommit",
|
2023-02-15 06:38:29 +07:00
|
|
|
event = "BufRead",
|
2023-01-15 00:17:41 +07:00
|
|
|
config = function()
|
|
|
|
require("user.gitsigns")
|
|
|
|
end,
|
2023-01-15 00:22:51 +07:00
|
|
|
},
|
2023-01-15 07:34:41 +07:00
|
|
|
|
2023-02-05 09:09:33 +07:00
|
|
|
-- additional plugins
|
2023-01-15 07:34:41 +07:00
|
|
|
-- active indent guide and indent text objects
|
|
|
|
{
|
|
|
|
"echasnovski/mini.indentscope",
|
|
|
|
version = false, -- wait till new 0.7.0 release to put it back on semver
|
|
|
|
event = "BufReadPre",
|
|
|
|
opts = {
|
|
|
|
-- symbol = "▏",
|
|
|
|
symbol = "│",
|
|
|
|
options = { try_as_border = true },
|
|
|
|
},
|
|
|
|
config = function(_, opts)
|
|
|
|
vim.api.nvim_create_autocmd("FileType", {
|
2023-02-12 21:35:02 +07:00
|
|
|
pattern = { "help", "alpha", "dashboard", "NvimTree", "Trouble", "lazy", "mason" },
|
2023-01-15 07:34:41 +07:00
|
|
|
callback = function()
|
|
|
|
vim.b.miniindentscope_disable = true
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
require("mini.indentscope").setup(opts)
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
-- makes some plugins dot-repeatable like leap
|
2023-02-20 08:38:22 +07:00
|
|
|
-- { "tpope/vim-repeat", event = "VeryLazy" },
|
2023-01-15 07:34:41 +07:00
|
|
|
-- better diagnostics list and others
|
2023-02-19 13:21:14 +07:00
|
|
|
{
|
|
|
|
"folke/trouble.nvim",
|
|
|
|
event = "BufRead",
|
|
|
|
cmd = { "TroubleToggle", "Trouble" },
|
|
|
|
opts = { use_diagnostic_signs = true },
|
|
|
|
keys = {
|
|
|
|
{ "<leader>xx", "<cmd>TroubleToggle document_diagnostics<cr>", desc = "Document Diagnostics (Trouble)" },
|
|
|
|
{ "<leader>xX", "<cmd>TroubleToggle workspace_diagnostics<cr>", desc = "Workspace Diagnostics (Trouble)" },
|
|
|
|
},
|
|
|
|
},
|
2023-01-17 13:36:46 +07:00
|
|
|
-- for markdown preview
|
|
|
|
-- make sure already install npm and yarn
|
2023-02-04 15:18:57 +07:00
|
|
|
-- {
|
|
|
|
-- "iamcco/markdown-preview.nvim",
|
|
|
|
-- event = "VeryLazy",
|
|
|
|
-- build = "cd app && npm install",
|
|
|
|
-- init = function()
|
|
|
|
-- vim.g.mkdp_filetypes = { "markdown" }
|
|
|
|
-- end,
|
|
|
|
-- ft = { "markdown" },
|
|
|
|
-- cmd = { "MarkdownPreview", "MarkdownPreviewStop", "MarkdownPreviewToggle" },
|
|
|
|
-- },
|
2023-01-19 00:00:48 +07:00
|
|
|
-- for codeGPT
|
2023-02-04 15:18:57 +07:00
|
|
|
-- {
|
|
|
|
-- "jackMort/ChatGPT.nvim",
|
|
|
|
-- dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim", "nvim-telescope/telescope.nvim" },
|
|
|
|
-- lazy = true,
|
|
|
|
-- event = "VeryLazy",
|
|
|
|
-- -- opts = function()
|
|
|
|
-- -- require("user.chat_gpt")
|
|
|
|
-- -- end,
|
|
|
|
-- },
|
2023-01-21 11:01:35 +07:00
|
|
|
-- indent detection
|
2023-02-04 15:18:57 +07:00
|
|
|
-- {
|
|
|
|
-- "Darazaki/indent-o-matic",
|
|
|
|
-- event = "VeryLazy",
|
|
|
|
-- opt = true,
|
|
|
|
-- cmd = { "IndentOMatic" },
|
|
|
|
-- config = function()
|
|
|
|
-- require("user.indent-o-matic")
|
|
|
|
-- end,
|
|
|
|
-- },
|
2023-01-25 19:23:42 +07:00
|
|
|
-- Lsp Saga
|
2023-01-25 21:49:08 +07:00
|
|
|
-- {
|
|
|
|
-- "glepnir/lspsaga.nvim",
|
|
|
|
-- event = "BufRead",
|
|
|
|
-- config = function()
|
|
|
|
-- require("lspsaga").setup({})
|
|
|
|
-- end,
|
|
|
|
-- dependencies = { { "kyazdani42/nvim-web-devicons" } },
|
|
|
|
-- init = function()
|
|
|
|
-- require("user.lspsaga_config")
|
|
|
|
-- end,
|
|
|
|
-- },
|
2023-01-28 12:19:19 +07:00
|
|
|
-- Khusus Projek laravel baru di buka
|
|
|
|
-- {
|
|
|
|
-- "adalessa/laravel.nvim",
|
|
|
|
-- dependencies = {
|
|
|
|
-- "nvim-telescope/telescope.nvim",
|
|
|
|
-- },
|
|
|
|
-- cmd = { "Sail", "Artisan", "Composer" },
|
|
|
|
-- keys = {
|
|
|
|
-- { "<leader>pa", ":Artisan<cr>" },
|
|
|
|
-- },
|
|
|
|
-- config = function()
|
|
|
|
-- require("laravel").setup()
|
|
|
|
-- require("telescope").load_extension("laravel")
|
|
|
|
-- end,
|
|
|
|
-- },
|
2023-02-05 09:09:33 +07:00
|
|
|
|
|
|
|
-- for loading info
|
2023-02-03 21:40:47 +07:00
|
|
|
{
|
|
|
|
"j-hui/fidget.nvim",
|
2023-02-09 13:22:54 +07:00
|
|
|
event = "BufRead",
|
2023-02-03 21:40:47 +07:00
|
|
|
config = function()
|
|
|
|
require("fidget").setup()
|
|
|
|
end,
|
|
|
|
},
|
2023-01-15 00:22:51 +07:00
|
|
|
}
|