diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-14 19:06:50 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-14 19:10:08 +0200 |
commit | fb3c96d50d625db725940625120012c75afc17f6 (patch) | |
tree | ac50ce1016f2fbb97ae1a7bf04f75be2559e078d /lua/gabrielgio/trouble.lua | |
download | gabrielgio.lua-fb3c96d50d625db725940625120012c75afc17f6.tar.gz gabrielgio.lua-fb3c96d50d625db725940625120012c75afc17f6.tar.bz2 gabrielgio.lua-fb3c96d50d625db725940625120012c75afc17f6.zip |
feat: Initial commit
Diffstat (limited to 'lua/gabrielgio/trouble.lua')
-rw-r--r-- | lua/gabrielgio/trouble.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lua/gabrielgio/trouble.lua b/lua/gabrielgio/trouble.lua new file mode 100644 index 0000000..67c4938 --- /dev/null +++ b/lua/gabrielgio/trouble.lua @@ -0,0 +1,15 @@ +local trouble = require("trouble") + +trouble.setup{ + fold_open = "v", + fold_closed = ">", + signs = { + error = "error", + warning = "warn", + hint = "hint", + information = "info" + }, + indent_lines = false, + icons = false, + use_diagnostic_signs = false +} |