chore: apply nixvim updates

This commit is contained in:
oddlama 2024-03-11 20:41:28 +01:00
parent 1b0934b565
commit e9fbbb9c7d
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
7 changed files with 316 additions and 232 deletions

View file

@ -31,7 +31,11 @@
{
type = "button";
val = " New file";
on_press.__raw = "function() vim.cmd[[enew]] end";
on_press.__raw =
/*
lua
*/
"function() vim.cmd[[enew]] end";
opts = {
shortcut = "e";
position = "center";
@ -54,7 +58,11 @@
{
type = "button";
val = "󰅙 Quit Neovim";
on_press.__raw = "function() vim.cmd[[qa]] end";
on_press.__raw =
/*
lua
*/
"function() vim.cmd[[qa]] end";
opts = {
shortcut = "q";
position = "center";