diff --git a/config/settings.nix b/config/settings.nix index dcfd1cb..0a4684f 100644 --- a/config/settings.nix +++ b/config/settings.nix @@ -1,8 +1,18 @@ { config = { + extraConfigLuaPre = + # lua + '' + vim.fn.sign_define("diagnosticsignerror", { text = " ", texthl = "diagnosticerror", linehl = "", numhl = "" }) + vim.fn.sign_define("diagnosticsignwarn", { text = " ", texthl = "diagnosticwarn", linehl = "", numhl = "" }) + vim.fn.sign_define("diagnosticsignhint", { text = "󰌵", texthl = "diagnostichint", linehl = "", numhl = "" }) + vim.fn.sign_define("diagnosticsigninfo", { text = " ", texthl = "diagnosticinfo", linehl = "", numhl = "" }) + ''; + clipboard = { providers.wl-copy.enable = true; }; + opts = { number = true; relativenumber = true;