diff options
| author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-09-18 00:58:26 +0200 |
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-09-18 00:58:28 +0200 |
| commit | cb36ccfa8db66db953795fd8e22138ed1712b1cd (patch) | |
| tree | fc0f8ef4e73c5fa7fb627d383a991aeb49a59bca /lua/config/set.lua | |
| parent | 424ad679f861031485e2e2f0ca19f5b559db929b (diff) | |
checkpoint
- added basic luasnip configuration
- added highlights for TODO and FIXME keywords
- added incremental selection of treesitter
- added prettier to conform formatters
- added when_disabled function to disable pairs in comments
- changed the hiding keybind to :Hide command
- only enable ` pairs in markdown
- removed <c-k> keybind
- removed cmp's calc source
- renamed keybinds for consistency
- reorganized plugins in lazy.lua
Diffstat (limited to 'lua/config/set.lua')
| -rw-r--r-- | lua/config/set.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/config/set.lua b/lua/config/set.lua index 3623a02..ce43d04 100644 --- a/lua/config/set.lua +++ b/lua/config/set.lua @@ -109,3 +109,6 @@ vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.s vim.diagnostic.config({ float = { border = _border }, }) + +-- highlight to-do's +vim.cmd("match Todo /\\(TODO\\|FIXME\\):/") |
