From 4fd57ec9c48bb290f00a9656d1a740d2766ce48c Mon Sep 17 00:00:00 2001 From: Yasien Mac Mini Date: Thu, 23 Apr 2026 10:43:32 +0200 Subject: [PATCH 1/2] add cmd popup window --- .DS_Store | Bin 6148 -> 6148 bytes lazy-lock.json | 3 +++ lua/.DS_Store | Bin 0 -> 6148 bytes lua/plugins/cmd_popup.lua | 20 ++++++++++++++++++++ lua/plugins/flutter.lua | 4 ++-- 5 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 lua/.DS_Store create mode 100644 lua/plugins/cmd_popup.lua diff --git a/.DS_Store b/.DS_Store index fafae327278281b0eca18b5ca0755d47d1e97737..a8c63b1047ebfd0a08ee43c1e63bb06154c55100 100644 GIT binary patch delta 44 zcmZoMXfc@J&&W10U^gS%WFE%l0?Z6K45bW-DaFY-N%{FXjGH$yy0C3#=lIJH03@Fc AUH||9 delta 30 mcmZoMXfc@J&&WD4U^gS{WFE%lo3Ah$vrTMJ+|17LmmdI_`w92} diff --git a/lazy-lock.json b/lazy-lock.json index 03f2780..d411e74 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -16,9 +16,12 @@ "mason-lspconfig.nvim": { "branch": "main", "commit": "0a3b42c3e503df87aef6d6513e13148381495c3a" }, "mason.nvim": { "branch": "main", "commit": "b03fb0f20bc1d43daf558cda981a2be22e73ac42" }, "mini.ai": { "branch": "main", "commit": "bfb26d9072670c3aaefab0f53024b2f3729c8083" }, + "noice.nvim": { "branch": "main", "commit": "7bfd942445fb63089b59f97ca487d605e715f155" }, + "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, "nvim-autopairs": { "branch": "master", "commit": "59bce2eef357189c3305e25bc6dd2d138c1683f5" }, "nvim-cmp": { "branch": "main", "commit": "a1d504892f2bc56c2e79b65c6faded2fd21f3eca" }, "nvim-lspconfig": { "branch": "master", "commit": "4b7fbaa239c5db6b36f424a4521ca9f1a401be33" }, + "nvim-notify": { "branch": "master", "commit": "8701bece920b38ea289b457f902e2ad184131a5d" }, "nvim-treesitter": { "branch": "main", "commit": "4916d6592ede8c07973490d9322f187e07dfefac" }, "nvim-web-devicons": { "branch": "master", "commit": "c72328a5494b4502947a022fe69c0c47e53b6aa6" }, "plenary.nvim": { "branch": "master", "commit": "74b06c6c75e4eeb3108ec01852001636d85a932b" }, diff --git a/lua/.DS_Store b/lua/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..f3c434e92328a5b91a553d401b7e4a2ccd3810d7 GIT binary patch literal 6148 zcmeHK%Sr=55Ukdq0WUdvoL}${mJq)nKM+hX2uoH7x$nvE^3$w-c!;Z)fR|7WJvGzQ zHN(_ldmDf)PrD~z0bovd#D@=4^L_V;-BiTU;*2-!cgJo2G7SAB`}crz@36&y177ii ze~)+cIAPC?1CHNE^DdbbkOERb3P=GdaG?TKN9PY0@NiF&xHu^b*A80b*A;CNe^^q!N>A)nZuE8E=)>6^@BXhsDi2r*5|DP%Lg|yhS>! zOVlU@q` Date: Thu, 23 Apr 2026 12:01:54 +0200 Subject: [PATCH 2/2] add cmd popup window pt2 --- lua/plugins/cmd_popup.lua | 7 ++++++- lua/plugins/treesitter.lua | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/lua/plugins/cmd_popup.lua b/lua/plugins/cmd_popup.lua index ddab760..c7cab48 100644 --- a/lua/plugins/cmd_popup.lua +++ b/lua/plugins/cmd_popup.lua @@ -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) + }, + }, } } diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 734b425..25d5d60 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -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 = { -- 2.49.1