Reformatted code after changing indent width to 2, TODO highlighting

- set all indent widths from 4 to 2
- added plugin to highlight TODO markers, can also be searched
  <leader>ft
This commit is contained in:
2024-09-19 21:48:06 +02:00
parent 73cb9eeca1
commit 1e98df6cc3
4 changed files with 309 additions and 289 deletions

View File

@@ -4,9 +4,9 @@ vim.opt.completeopt = { 'menu', 'menuone', 'noselect' }
vim.opt.mouse = 'a' -- allow the mouse to be used in Nvim
-- Tab
vim.opt.tabstop = 4 -- number of visual spaces per TAB
vim.opt.softtabstop = 4 -- number of spacesin tab when editing
vim.opt.shiftwidth = 4 -- insert 4 spaces on a tab
vim.opt.tabstop = 2 -- number of visual spaces per TAB
vim.opt.softtabstop = 2 -- number of spacesin tab when editing
vim.opt.shiftwidth = 2 -- insert 4 spaces on a tab
vim.opt.expandtab = true -- tabs are spaces, mainly because of python
-- UI config