add astrovim as a nix package

This commit is contained in:
2024-03-01 19:56:08 +05:30
parent 9a1daafc5a
commit 39a0d56514
5 changed files with 266 additions and 0 deletions

View 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" },
},
}