mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 01:39:54 +01:00
added kitty integration
This commit is contained in:
@@ -60,3 +60,25 @@ map("i", "<C-c>", "<Esc>")
|
||||
map("n", "<leader>mr", "<cmd>CellularAutomaton make_it_rain<CR>");
|
||||
|
||||
map("n", "<leader><leader>", function() vim.cmd("so") end)
|
||||
|
||||
-- zachypythonyay stfu
|
||||
|
||||
map(
|
||||
"n",
|
||||
"<A-Left>",
|
||||
"<cmd>KittyNavigateLeft<CR>",
|
||||
{ desc = "Move to left split" }
|
||||
)
|
||||
map(
|
||||
"n",
|
||||
"<A-Down>",
|
||||
"<cmd>KittyNavigateDown<CR>",
|
||||
{ desc = "Move to bottom split" }
|
||||
)
|
||||
map("n", "<A-Up>", "<cmd>KittyNavigateUp<CR>", { desc = "Move to top split" })
|
||||
map(
|
||||
"n",
|
||||
"<A-Right>",
|
||||
"<cmd>KittyNavigateRight<CR>",
|
||||
{ desc = "Move to right split" }
|
||||
)
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
return {
|
||||
{
|
||||
{"knubie/vim-kitty-navigator", build = "cp ./*.py ~/.config/kitty/"}, {
|
||||
|
||||
"aznhe21/actions-preview.nvim",
|
||||
config = function() require("actions-preview") end
|
||||
}, {
|
||||
"sbdchd/neoformat",
|
||||
init = function()
|
||||
vim.cmd("source" .. vim.fn.stdpath "config" ..
|
||||
"/lua/config/neoformat.vim")
|
||||
"/lua/config/neoformat.vim")
|
||||
end
|
||||
}, {
|
||||
"rachartier/tiny-inline-diagnostic.nvim",
|
||||
|
||||
Reference in New Issue
Block a user