mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 16:41:43 +05:30
chore(neovim): Re-rationalize Neovim keybindings
This commit is contained in:
@@ -18,7 +18,18 @@ return {
|
||||
},
|
||||
},
|
||||
config = function()
|
||||
-- Setup basic configuration
|
||||
require("codeium").setup({})
|
||||
|
||||
vim.keymap.set("n", "<leader>aa", function()
|
||||
vim.cmd("Codeium Enable")
|
||||
vim.notify("Codeium enabled", vim.log.levels.INFO)
|
||||
end, { desc = "Enable Codeium" })
|
||||
|
||||
vim.keymap.set("n", "<leader>ax", function()
|
||||
vim.cmd("Codeium Disable")
|
||||
vim.notify("Codeium disabled", vim.log.levels.INFO)
|
||||
end, { desc = "Disable Codeium" })
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user