cmd-popup #24

Merged
yaso_meth merged 2 commits from cmd-popup into main 2026-04-23 10:03:02 +00:00
2 changed files with 11 additions and 2 deletions
Showing only changes of commit c773c6e230 - Show all commits

View File

@@ -15,6 +15,11 @@ return {
},
dependencies = {
"MunifTanjim/nui.nvim",
"rcarriga/nvim-notify",
{
"rcarriga/nvim-notify",
opts = {
timeout = 2000, -- Set this to your preferred time in milliseconds (e.g., 3000 = 3 seconds)
},
},
}
}

View File

@@ -1,11 +1,15 @@
return {
"nvim-treesitter/nvim-treesitter",
lazy = false,
-- event = { "BufReadPost", "BufNewFile" },
build = ":TSUpdate",
config = function()
require("nvim-treesitter").setup({
install_dir = vim.fn.stdpath("data") .. "/site",
highlight = { enable = true },
highlight = {
enable = true,
-- additional_vim_regex_highlighting = false,
},
indent = { enable = true },
autotag = { enable = true },
ensure_installed = {