Compare commits

...

20 Commits

Author SHA1 Message Date
2e1dee9fdf Merge pull request 'disable copilot on startup' (#31) from update-copilot into main
Reviewed-on: #31
2026-05-15 10:11:34 +00:00
2044bb9449 disable copilot on startup 2026-05-15 12:10:57 +02:00
a465785583 Merge pull request 'add file explorer to replace default explorer' (#30) from yazi-file-explore into main
Reviewed-on: #30
2026-05-13 09:25:05 +00:00
d3b7c61afd add file explorer to replace default explorer 2026-05-13 11:23:29 +02:00
b5d3dcf1ac Merge pull request 'fix flutter with nvim 0.12.2' (#29) from flutter-lsp-fix into main
Reviewed-on: #29
2026-05-12 13:31:38 +00:00
c2c0373b3e fix flutter with nvim 0.12.2 2026-05-12 15:31:19 +02:00
47599ecb8e Merge pull request 'remove lsp progress popups when editing code' (#28) from lsp-progress-popups-fix into main
Reviewed-on: #28
2026-05-12 11:05:29 +00:00
587d2c25c4 remove lsp progress popups when editing code 2026-05-12 13:04:39 +02:00
a61a3de603 Merge pull request 'python-highlighting' (#27) from python-highlighting into main
Reviewed-on: #27
2026-04-30 08:13:40 +00:00
ce27e4a87d update treesitter for nvim 0.12.2 2026-04-30 10:12:59 +02:00
9b3b13f06e Remove .DS_Store from tracking and ignore it 2026-04-30 10:10:57 +02:00
13c0b1fc67 Merge pull request 'change accept autocomplete with TAB to CTRL+l' (#26) from copilot-enhancement into main
Reviewed-on: #26
2026-04-29 12:09:07 +00:00
36fe97222a change accept autocomplete with TAB to CTRL+l 2026-04-29 14:08:18 +02:00
14da6a657b Merge pull request 'integrat cop[ilot code suggestions to mzansivim' (#25) from copilot-integration into main
Reviewed-on: #25
2026-04-24 13:06:18 +00:00
4b6c04c74b integrat cop[ilot code suggestions to mzansivim 2026-04-24 15:05:07 +02:00
2b726ea843 Merge pull request 'cmd-popup' (#24) from cmd-popup into main
Reviewed-on: #24
2026-04-23 10:03:01 +00:00
c773c6e230 add cmd popup window pt2 2026-04-23 12:01:54 +02:00
4fd57ec9c4 add cmd popup window 2026-04-23 10:43:32 +02:00
92e60d0698 Merge pull request 'Add flutter key bindings to readme pt2' (#23) from flutter-v2 into main
Reviewed-on: #23
2026-04-20 08:57:09 +00:00
9bf11643e2 Add flutter key bindings to readme pt2 2026-04-20 10:55:52 +02:00
14 changed files with 192 additions and 64 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@@ -2,3 +2,5 @@
*.swo
undo/
view/
.DS_Store
**/.DS_Store

View File

@@ -23,7 +23,7 @@ The **Leader Key** is set to `Space`.
### Dashboard
| Action | Keybinding | Description |
| :--- | :--- | :--- |
| **File Explorer** | `cd` | Open Netrw directly from the dashboard. |
| **File Explorer** | `cd` | Open Yazi directly from the dashboard. |
| **Find Files** | `ff` | Fuzzy find files via Telescope. |
| **Live Grep** | `fg` | Search across all files via Telescope. |
| **Harpoon Menu** | `e` | Open the Harpoon quick menu. |
@@ -37,11 +37,32 @@ The **Leader Key** is set to `Space`.
| Action | Keybinding | Description |
| :--- | :--- | :--- |
| **Dashboard** | `<leader>;` | Open the MzansiVim Dasboard. |
| **File Explorer** | `<leader>cd` | Open the built-in Netrw explorer. |
| **File Explorer (Current Directory)** | `<leader>cd` | Open the Yazi explorer in current directory. |
| **File Explorer (Working Directory)** | `<leader>cw` | Open the Yazi explorer in working directory. |
| **Find Files** | `<leader>ff` | Fuzzy find files in your project. |
| **Live Grep** | `<leader>fg` | Search for specific text across all files. |
| **Help Tags** | `<leader>fh` | Search through Neovim help documentation. |
### Yazi (File Explorer)
| Action | Keybinding | Description |
| :--- | :--- | :--- |
| **File Explorer** | `<leader>cd` | Open the Yazi explorer in file location. |
| **File Explorer** | `<leader>cw` | Open the Yazi explorer in working directory location. |
| **Navigation** | `h / j / k / l` | Move left (parent folder)/ down/ up/ or right (enter folder/open file). |
| **Open file** | `Enter` | Open file in new buffer. |
| **Open File (Horizontal Split)** | `Ctrl + x` | open file in horizontal split. |
| **Open File (Vertical Split)** | `Ctrl + v` | open file in horizontal split. |
| **Add file/ folder** | `a` | Create a new file (append / for a folder). |
| **Rename file/ folder** | `r` | Rename the highlighted file or directory. |
| **Delete file/ folder** | `d` | Move the selected item(s) to the system trash. |
| **Permanent Delete file/ folder** | `D` | Delete item(s) permanently (skips trash). |
| **Select file/ folder** | `space` | Toggle selection for the current file (allows batch actions). |
| **Bulk Select file/ folder** | `v` | Enter visual mode to select multiple files with `j/k` |
| **Copy / Cut** | `y / x` | Copy (Yank) or Cut the selected files. |
| **Paste** | `p` | Paste copied or cut files into the current directory. |
| **Help Menu** | `F1` | Open the help menu for keybindings. |
| **Close / Quit** | `q` | Exit Yazi and return to the Neovim buffer. |
### Harpoon (Quick-Switching)
| Action | Keybinding | Description |
| :--- | :--- | :--- |
@@ -60,7 +81,7 @@ The **Leader Key** is set to `Space`.
| **References** | `gr` | List all places where a symbol is used. |
| **Rename** | `<leader>rn` | Rename all occurrences of the symbol. |
### LSP & Development
### Flutter Development
| Action | Keybinding | Description |
| :--- | :--- | :--- |
| **Run App** | `:FRun` | Start the flutter application. |
@@ -73,6 +94,16 @@ The **Leader Key** is set to `Space`.
| **Toggle Logs** | `:FLogs` | Open or close the Flutter Dev Log split. |
| **Clear Logs** | `:FLogsClear` | Clear the current Flutter Dev Log buffer. |
### Copilot Code Completion
| Action | Keybinding | Description |
| :--- | :--- | :--- |
| **:Accept suggestion** | `Ctrl + l` | Accept suggested code from Copilot. |
| **:Setup Copilot** | `:Copilot setup` | Authenticate and enable GitHub Copilot (disable cmd popups before proceeding with setup). |
| **:Enable Copilot** | `:Copilot enable` | Enable GitHub Copilot after :Copilot disable. |
| **:Disable Copilot** | `:Copilot disable` | Disable GitHub Copilot inline suggestions. |
| **:Check Status of Copilot** | `:Copilot status` | Check if GitHub Copilot is operational and report on any issues. |
| **:Signout of Copilot** | `:Copilot signout` | Sign out of GitHub Copilot. |
### Diagnostics (Errors & Warnings)
| Action | Keybinding | Description |
| :--- | :--- | :--- |
@@ -85,7 +116,7 @@ The **Leader Key** is set to `Space`.
### Window Management
| Action | Keybinding | Description |
| :--- | :--- | :--- |
| **Cycle Windows** | `Ctrl + w w` | Cycle focus between open windows (). |
| **Cycle Windows** | `Ctrl + w w` | Cycle focus between open windows. |
| **Move Down** | `Ctrl + w j` | Move focus to the window below. |
| **Move Up** | `Ctrl + w k` | Move focus to the window above. |
| **Move Up** | `Ctrl + w s` | Duplicate window (horizontal). |
@@ -114,6 +145,7 @@ To ensure all plugins (LSP, Tree-sitter, and Telescope) function correctly, plea
* **Git** (For cloning the repo and managing plugins)
* **Tree-sitter-cli** (For syntax highlighting)
* **Ripgrep** (Required for Telescope live grep)
* **Yazi** (Required for file expolorer)
* **Node & NPM** (Required for various LSP servers like `html` and `eslint`)
* **Go** (Required for certain internal tools)

View File

@@ -6,24 +6,29 @@
"cmp-nvim-lsp": { "branch": "main", "commit": "cbc7b02bb99fae35cb42f514762b89b5126651ef" },
"cmp-path": { "branch": "main", "commit": "c642487086dbd9a93160e1679a1327be111cbc25" },
"cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" },
"copilot.vim": { "branch": "release", "commit": "a12fd5672110c8aa7e3c8419e28c96943ca179be" },
"dashboard-nvim": { "branch": "master", "commit": "f787e3462c2ee2b6117b17c1aa4ddf66cb6f57fe" },
"dressing.nvim": { "branch": "master", "commit": "2d7c2db2507fa3c4956142ee607431ddb2828639" },
"flutter-tools.nvim": { "branch": "main", "commit": "677cc07c16e8b89999108d2ebeefcfc5f539b73c" },
"flutter-tools.nvim": { "branch": "main", "commit": "7fc434e99297af83cba10deff008be53a008a6d5" },
"harpoon": { "branch": "harpoon2", "commit": "87b1a3506211538f460786c23f98ec63ad9af4e5" },
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" },
"log-highlight.nvim": { "branch": "main", "commit": "ca88628f6dd3b9bb46f9a7401669e24cf7de47a4" },
"lualine.nvim": { "branch": "master", "commit": "a905eeebc4e63fdc48b5135d3bf8aea5618fb21c" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "0a3b42c3e503df87aef6d6513e13148381495c3a" },
"mason.nvim": { "branch": "main", "commit": "b03fb0f20bc1d43daf558cda981a2be22e73ac42" },
"lualine.nvim": { "branch": "master", "commit": "131a558e13f9f28b15cd235557150ccb23f89286" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "0c2823e0418f3d9230ff8b201c976e84de1cb401" },
"mason.nvim": { "branch": "main", "commit": "cb8445f8ce85d957416c106b780efd51c6298f89" },
"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-lspconfig": { "branch": "master", "commit": "b66a8ce16b141cd26576267e2d1f371d658b7bb7" },
"nvim-notify": { "branch": "master", "commit": "8701bece920b38ea289b457f902e2ad184131a5d" },
"nvim-treesitter": { "branch": "main", "commit": "4916d6592ede8c07973490d9322f187e07dfefac" },
"nvim-web-devicons": { "branch": "master", "commit": "c72328a5494b4502947a022fe69c0c47e53b6aa6" },
"nvim-web-devicons": { "branch": "master", "commit": "4fc505ac7bd7692824a142e96e5f529c133862f8" },
"plenary.nvim": { "branch": "master", "commit": "74b06c6c75e4eeb3108ec01852001636d85a932b" },
"telescope-fzf-native.nvim": { "branch": "main", "commit": "6fea601bd2b694c6f2ae08a6c6fab14930c60e2c" },
"telescope.nvim": { "branch": "master", "commit": "5255aa27c422de944791318024167ad5d40aad20" },
"tokyonight.nvim": { "branch": "main", "commit": "cdc07ac78467a233fd62c493de29a17e0cf2b2b6" },
"vim-fugitive": { "branch": "master", "commit": "3b753cf8c6a4dcde6edee8827d464ba9b8c4a6f0" }
"vim-fugitive": { "branch": "master", "commit": "3b753cf8c6a4dcde6edee8827d464ba9b8c4a6f0" },
"yazi.nvim": { "branch": "main", "commit": "25f370e6e84ca7ebca5927ec66cd93e2fa16fd3d" }
}

BIN
lua/.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -1,5 +1,5 @@
vim.g.mapleader = " "
vim.keymap.set("n", "<leader>cd", vim.cmd.Ex)
-- vim.keymap.set("n", "<leader>cd", vim.cmd.Ex)
vim.keymap.set("n", "<leader>;", ":Dashboard<CR>", { desc = "Return to Dashboard", silent = true })
vim.api.nvim_create_autocmd("FileType", {
pattern = "netrw",
@@ -25,7 +25,8 @@ vim.api.nvim_create_autocmd("FileType", {
vim.cmd("Dashboard")
end, {
buffer = event.buf,
nowait = true, desc = "Return to Dashboard"
nowait = true,
desc = "Return to Dashboard"
})
end)
end,

View File

@@ -2,3 +2,8 @@ vim.opt.number = true
vim.opt.cursorline = true
vim.opt.relativenumber = true
vim.opt.shiftwidth = 4
-- disable netrw at the very start
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
vim.opt.splitbelow = true -- Opens horizontal splits below
vim.opt.splitright = true -- Opens vertical splits to the right

34
lua/plugins/cmd_popup.lua Normal file
View File

@@ -0,0 +1,34 @@
return {
"folke/noice.nvim",
event = "VeryLazy",
opts = {
cmdline = {
view = "cmdline_popup", -- This ensures it's a popup and not at the bottom
},
routes = {
{
filter = {
event = "lsp",
kind = "progress",
},
opts = { skip = true },
},
},
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",
opts = {
timeout = 2000, -- Set this to your preferred time in milliseconds (e.g., 3000 = 3 seconds)
},
},
}
}

12
lua/plugins/copilot.lua Normal file
View File

@@ -0,0 +1,12 @@
return {
"github/copilot.vim",
lazy = false,
config = function()
vim.g.copilot_enabled = false
vim.g.copilot_no_tab_map = true
vim.keymap.set('i', '<C-l>', 'copilot#Accept("\\<CR>")', {
expr = true,
replace_keycodes = false
})
end,
}

View File

@@ -19,7 +19,14 @@ return {
header = vim.split(logo, "\n"),
center = {
-- Aligned to Mzansi Vim Essential Keybindings
{ icon = "󰉓 ", desc = " File Explorer ", key = "cd", action = "Explore" },
{
icon = "󰉓 ",
desc = " File Explorer ",
key = "cd",
action = function()
require("yazi").yazi(nil, vim.fn.getcwd())
end
},
{ icon = "", desc = " Find Files ", key = "ff", action = "Telescope find_files" },
{ icon = "", desc = " Live Grep ", key = "fg", action = "Telescope live_grep" },
{

View File

@@ -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",

View File

@@ -45,8 +45,10 @@ return {
})
end
-- Activate the server
if server_name ~= "dartls" then
vim.lsp.enable(server_name)
end
end
-- Diagnostic display config
vim.diagnostic.config({

View File

@@ -1,31 +1,30 @@
return {
"nvim-treesitter/nvim-treesitter",
lazy = false,
lazy = false, -- Treesitter must not be lazy-loaded in the new version
build = ":TSUpdate",
config = function()
require("nvim-treesitter").setup({
local ts = require("nvim-treesitter")
local supported_languages = {
"lua", "vim", "vimdoc", "query", "dart", "python",
"dockerfile", "yaml", "bash", "json", "html",
"css", "javascript", "sql", "markdown", "markdown_inline",
}
-- 1. Global Settings
ts.setup({
install_dir = vim.fn.stdpath("data") .. "/site",
highlight = { enable = true },
indent = { enable = true },
autotag = { enable = true },
ensure_installed = {
"lua",
"vim",
"vimdoc",
"query",
"dart",
"python",
"dockerfile",
"yaml",
"bash",
"json",
"html",
"css",
"javascript",
"sql",
"markdown",
"markdown_inline",
},
auto_install = true,
})
-- 2. Bulk Install Parsers (Asynchronous)
ts.install(supported_languages)
-- 3. Enable Highlighting
vim.api.nvim_create_autocmd("FileType", {
pattern = supported_languages,
callback = function()
local lang = vim.treesitter.language.get_lang(vim.bo.filetype)
if lang then
vim.treesitter.start()
end
end,
})
end,
}

29
lua/plugins/yazi.lua Normal file
View File

@@ -0,0 +1,29 @@
return {
"mikavilpas/yazi.nvim",
event = "VeryLazy",
keys = {
-- Customize these keymaps to your liking!
{
"<leader>cd",
function()
require("yazi").yazi()
end,
desc = "Open yazi at the current file",
},
{
-- Open in the current working directory
"<leader>cw",
function()
require("yazi").yazi(nil, vim.fn.getcwd())
end,
desc = "Open yazi in cwd",
},
},
opts = {
-- if you want to replace netrw entirely with yazi
open_for_directories = true,
keymaps = {
show_help = "<f1>",
},
},
}