fix: smartquit had a syntax error my bad chat
This commit is contained in:
parent
d0037cbf0e
commit
8b1a2872ac
2 changed files with 4 additions and 3 deletions
|
@ -43,7 +43,7 @@ vim.api.nvim_create_user_command("SmartQuit", function(opts)
|
|||
style = "minimal",
|
||||
border = "rounded",
|
||||
title = {
|
||||
{ #unsaved .. " Unsaved Buffer" .. (#unsaved != 1 and "s" or "") .. "!", "ErrorMsg" },
|
||||
{ #unsaved .. " Unsaved Buffer" .. (#unsaved ~= 1 and "s" or "") .. "!", "ErrorMsg" },
|
||||
},
|
||||
title_pos = "center",
|
||||
})
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
_: {
|
||||
{ lib, ... }:
|
||||
{
|
||||
vim = {
|
||||
languages.lua.enable = false; # broken
|
||||
languages.lua.enable = lib.mkForce true;
|
||||
options.linebreak = true;
|
||||
git.gitsigns.setupOpts = {
|
||||
current_line_blame = false;
|
||||
|
|
Loading…
Reference in a new issue