Add nvim stuff

This commit is contained in:
iamBadgers
2026-05-31 19:23:30 -07:00
parent bdd903a188
commit 1621ce2790
4 changed files with 11 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
{ {
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" }, "lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" },
"plenary.nvim": { "branch": "master", "commit": "74b06c6c75e4eeb3108ec01852001636d85a932b" }, "plenary.nvim": { "branch": "master", "commit": "74b06c6c75e4eeb3108ec01852001636d85a932b" },
"telescope-fzf-native.nvim": { "branch": "main", "commit": "b25b749b9db64d375d782094e2b9dce53ad53a40" }, "telescope-fzf-native.nvim": { "branch": "main", "commit": "b25b749b9db64d375d782094e2b9dce53ad53a40" },
"telescope.nvim": { "branch": "master", "commit": "5255aa27c422de944791318024167ad5d40aad20" }, "telescope.nvim": { "branch": "master", "commit": "5255aa27c422de944791318024167ad5d40aad20" },

View File

@@ -1,3 +1,5 @@
require("config.remap") require("config.remap")
require("config.settings") require("config.settings")
require("config.lazy") require("config.lazy")
vim.cmd.colorscheme("catppuccin")

View File

@@ -1,3 +1,5 @@
vim.cmd.colorscheme("catppuccin")
vim.opt.guicursor = "" vim.opt.guicursor = ""
vim.opt.nu = true vim.opt.nu = true

View File

@@ -2,17 +2,13 @@ return {
"folke/which-key.nvim", "folke/which-key.nvim",
event = "VeryLazy", event = "VeryLazy",
opts = { opts = {
-- your configuration comes here preset = "helix",
-- or leave it empty to use the default settings spec = {
-- refer to the configuration section below mode = {"n", "x"},
{"<leader>b", group = "+ Buffer Manipulation"},
{"<leader>f", group = "+ Find Files"},
},
}, },
keys = { keys = {
{
"<leader>?",
function()
require("which-key").show({ global = false })
end,
desc = "Buffer Local Keymaps (which-key)",
},
} }
} }