1
0
Fork 0

Change diagnostic signs again

This commit is contained in:
Avery 2025-07-02 09:28:58 +00:00
parent b4ee9d0b8a
commit 0f3bae33c7
Signed by: Avery
GPG key ID: B684FD451B692E04
2 changed files with 11 additions and 10 deletions

View file

@ -25,6 +25,17 @@
};
};
diagnostic.settings = {
signs.text.__raw = ''
{
[vim.diagnostic.severity.ERROR] = "",
[vim.diagnostic.severity.WARN] = "",
[vim.diagnostic.severity.HINT] = "",
[vim.diagnostic.severity.INFO] = "",
}
'';
};
globals.mapleader = " ";
opts = {

View file

@ -3,16 +3,6 @@
lsp = {
enable = true;
keymaps.lspBuf."<leader>ca" = "code_action";
luaConfig.post = ''
vim.diagnostic.config({
signs = {
Error = "",
Warn = "",
Hint = "",
Info = ""
}
});
'';
servers = {
cssls.enable = true;
dartls.enable = true;