fix lua stupid stoopid

This commit is contained in:
Tristan 2024-01-06 00:56:17 +00:00
parent 1567efd5ad
commit 112a5f7b8d
3 changed files with 5 additions and 4 deletions

View file

@ -68,7 +68,8 @@ in {
ansible
];
programs.fish = {
programs.starship.enable = true;
programs.zsh = {
enable = true;
};

View file

@ -10,7 +10,7 @@ vim.o.smartindent = true
vim.o.hlsearch = false
vim.o.scrolloff = 4
vim.o.undofile = true
vim.o.undodir = "~/.local/share/nvim/undo"
vim.o.undodir = vim.fn.expand("$HOME/.local/share/nvim/undo")
vim.keymap.set("v", "J", ":m '>+1<CR>gv=gv")
vim.keymap.set("v", "K", ":m '<-2<CR>gv=gv")