diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-16 11:16:22 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-16 11:16:22 +0100 |
| commit | 7aa3ebc23caa498ec520b1c77b01cc5617265369 (patch) | |
| tree | 75ca761f800d8d90954197de12dfca309c8e6229 /modules/home/i3wm/nord-blue | |
| parent | fa74336cbd147eff31ce461dfc2b2afe8c51285b (diff) | |
added treesitter keybind to open file search in project root on double space
Diffstat (limited to 'modules/home/i3wm/nord-blue')
| -rw-r--r-- | modules/home/i3wm/nord-blue/nvim.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix index 9762c81..b89a6fb 100644 --- a/modules/home/i3wm/nord-blue/nvim.nix +++ b/modules/home/i3wm/nord-blue/nvim.nix @@ -41,6 +41,12 @@ vim.cmd.colorscheme("catppuccin") + -- KEYBINDS -- + vim.keymap.set("n", "<leader><leader>", function() + builtin.find_files({ cwd = vim.loop.cwd() }) + end, { desc = "Find files (cwd)" }) + + -- Catppuccin theme require("catppuccin").setup({ flavour = "mocha", -- latte, frappe, macchiato, mocha |
