diff options
Diffstat (limited to 'dotfiles')
-rw-r--r-- | dotfiles/vim.lua | 28 |
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 | |||
290 | vim.cmd [[highlight link NotifyERRORBorder DiagnosticError]] | ||
291 | vim.cmd [[highlight link NotifyERRORIcon DiagnosticError]] | ||
292 | vim.cmd [[highlight link NotifyERRORTitle DiagnosticError]] | ||
293 | |||
294 | vim.cmd [[highlight link NotifyWARNBorder DiagnosticWarn]] | ||
295 | vim.cmd [[highlight link NotifyWARNIcon DiagnosticWarn]] | ||
296 | vim.cmd [[highlight link NotifyWARNTitle DiagnosticWarn]] | ||
297 | |||
298 | vim.cmd [[highlight link NotifyINFOBorder DiagnosticInfo]] | ||
299 | vim.cmd [[highlight link NotifyINFOIcon DiagnosticInfo]] | ||
300 | vim.cmd [[highlight link NotifyINFOTitle DiagnosticInfo]] | ||
301 | |||
302 | vim.cmd [[highlight link NotifyDEBUGBorder DiagnosticHint]] | ||
303 | vim.cmd [[highlight link NotifyDEBUGIcon DiagnosticHint]] | ||
304 | vim.cmd [[highlight link NotifyDEBUGTitle DiagnosticHint]] | ||
305 | |||
306 | vim.cmd [[highlight link NotifyDEBUGBorder GruvboxPurple]] | ||
307 | vim.cmd [[highlight link NotifyDEBUGIcon GruvboxPurple]] | ||
308 | vim.cmd [[highlight link NotifyDEBUGTitle GruvboxPurple]] | ||
309 | |||
310 | vim.notify = require("notify") | ||
311 | |||
312 | -- Comment | ||
313 | |||
314 | require('Comment').setup {} | ||
315 | |||
288 | -- Local config | 316 | -- Local config |
289 | 317 | ||
290 | function isModuleAvailable(name) | 318 | function isModuleAvailable(name) |