diff --git a/.DS_Store b/.DS_Store index fafae32..a8c63b1 100644 Binary files a/.DS_Store and b/.DS_Store differ 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 0000000..f3c434e Binary files /dev/null and b/lua/.DS_Store differ diff --git a/lua/plugins/cmd_popup.lua b/lua/plugins/cmd_popup.lua new file mode 100644 index 0000000..ddab760 --- /dev/null +++ b/lua/plugins/cmd_popup.lua @@ -0,0 +1,20 @@ +return { + "folke/noice.nvim", + event = "VeryLazy", + opts = { + cmdline = { + view = "cmdline_popup", -- This ensures it's a popup and not at the bottom + }, + presets = { + bottom_search = false, -- use a classic bottom cmdline for search + command_palette = true, -- position the cmdline and popupmenu together + long_message_to_split = true, -- render entities like :help in a split + inc_rename = false, -- enables an input dialog for inc-rename.nvim + lsp_doc_border = true, -- add a border to hover docs and signature help + }, + }, + dependencies = { + "MunifTanjim/nui.nvim", + "rcarriga/nvim-notify", + } +} diff --git a/lua/plugins/flutter.lua b/lua/plugins/flutter.lua index 5617f4e..25913ad 100644 --- a/lua/plugins/flutter.lua +++ b/lua/plugins/flutter.lua @@ -63,7 +63,7 @@ return { -- Simple Aliases -- user_command("FRun", "FlutterRun", {}) -- user_command("FRun", "FlutterRun --color", {}) - user_command("FRun", "FlutterRun", {}) + user_command("FRun", "FlutterRun --web-port 1995", {}) user_command("FReload", "FlutterReload", {}) user_command("FRestart", "FlutterRestart", {}) @@ -75,7 +75,7 @@ return { -- Target-specific Run Command user_command("FRunT", function(opts) - vim.cmd("FlutterRun --target=" .. opts.args) + vim.cmd("FlutterRun --web-port 1995 --target=" .. opts.args) end, { nargs = 1, complete = "file",