summaryrefslogtreecommitdiffstats
path: root/dotfiles/vim.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/vim.lua')
-rw-r--r--dotfiles/vim.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/dotfiles/vim.lua b/dotfiles/vim.lua
index 0e89ba6..05af6de 100644
--- a/dotfiles/vim.lua
+++ b/dotfiles/vim.lua
@@ -285,6 +285,34 @@ require("neogit").setup {
285 }, 285 },
286} 286}
287 287
288-- Notify
289
290vim.cmd [[highlight link NotifyERRORBorder DiagnosticError]]
291vim.cmd [[highlight link NotifyERRORIcon DiagnosticError]]
292vim.cmd [[highlight link NotifyERRORTitle DiagnosticError]]
293
294vim.cmd [[highlight link NotifyWARNBorder DiagnosticWarn]]
295vim.cmd [[highlight link NotifyWARNIcon DiagnosticWarn]]
296vim.cmd [[highlight link NotifyWARNTitle DiagnosticWarn]]
297
298vim.cmd [[highlight link NotifyINFOBorder DiagnosticInfo]]
299vim.cmd [[highlight link NotifyINFOIcon DiagnosticInfo]]
300vim.cmd [[highlight link NotifyINFOTitle DiagnosticInfo]]
301
302vim.cmd [[highlight link NotifyDEBUGBorder DiagnosticHint]]
303vim.cmd [[highlight link NotifyDEBUGIcon DiagnosticHint]]
304vim.cmd [[highlight link NotifyDEBUGTitle DiagnosticHint]]
305
306vim.cmd [[highlight link NotifyDEBUGBorder GruvboxPurple]]
307vim.cmd [[highlight link NotifyDEBUGIcon GruvboxPurple]]
308vim.cmd [[highlight link NotifyDEBUGTitle GruvboxPurple]]
309
310vim.notify = require("notify")
311
312-- Comment
313
314require('Comment').setup {}
315
288-- Local config 316-- Local config
289 317
290function isModuleAvailable(name) 318function isModuleAvailable(name)