added todo-comments package

This commit is contained in:
paul-loedige
2024-05-13 15:36:23 +02:00
parent 369ec5c570
commit a46d2968c8
+12 -1
View File
@@ -43,6 +43,10 @@ Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " We recommend upda
" fuzzy finders
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
" todo lists
Plug 'folke/trouble.nvim'
Plug 'folke/lsp-colors.nvim'
Plug 'folke/todo-comments.nvim'
" cheat sheet
Plug 'sudormrfbin/cheatsheet.nvim'
Plug 'nvim-lua/popup.nvim'
@@ -147,7 +151,8 @@ let g:coc_global_extensions = [
\'coc-vimtex',
\'coc-python',
\'coc-vimlsp',
\'coc-json']
\'coc-json',
\'@yaegassy/coc-marksman']
source $MYCOCVIM
" }}} CoC (Conquer of Completion) "
@@ -244,3 +249,9 @@ let g:vimtex_compiler_latexmk = {
\ ],
\}
" }}} VimTeX "
" TODO Comments {{{ "
lua<<EOF
require 'todo-comments'.setup {}
EOF
" }}} TODO Comments "