mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 21:16:35 +05:30
initial commit
This commit is contained in:
18
modules/home-manager/nvim/astronvim/lua/user/mappings.lua
Normal file
18
modules/home-manager/nvim/astronvim/lua/user/mappings.lua
Normal file
@ -0,0 +1,18 @@
|
||||
return {
|
||||
n = {
|
||||
["<C-=>"] = {
|
||||
function()
|
||||
vim.g.neovide_scale_factor = vim.g.neovide_scale_factor + 0.1
|
||||
end,
|
||||
desc = "Zoom In (Neovide)",
|
||||
},
|
||||
["<C-->"] = {
|
||||
function()
|
||||
vim.g.neovide_scale_factor = vim.g.neovide_scale_factor - 0.1
|
||||
end,
|
||||
desc = "Zoom Out (Neovide)",
|
||||
},
|
||||
["<leader>ai"] = { ":Gen<CR>", desc = "Run Ollama" },
|
||||
["<leader>fml"] = { ":CellularAutomaton make_it_rain<CR>", desc = "FML" },
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user