diff options
| author | Joe <rbo@gmx.us> | 2023-12-28 12:39:41 +0100 | 
|---|---|---|
| committer | Joe <rbo@gmx.us> | 2023-12-28 12:39:41 +0100 | 
| commit | a947244e747fb6c93eb0b79a390d01b0fd23bfbd (patch) | |
| tree | 3a3e2b51ee19b1a7c9f85b726735a35317a41baf | |
| parent | up (diff) | |
| download | dotfiles-bsd-a947244e747fb6c93eb0b79a390d01b0fd23bfbd.tar.gz dotfiles-bsd-a947244e747fb6c93eb0b79a390d01b0fd23bfbd.tar.bz2 dotfiles-bsd-a947244e747fb6c93eb0b79a390d01b0fd23bfbd.tar.xz dotfiles-bsd-a947244e747fb6c93eb0b79a390d01b0fd23bfbd.tar.zst dotfiles-bsd-a947244e747fb6c93eb0b79a390d01b0fd23bfbd.zip | |
up
| -rw-r--r-- | .config/nvim/after/plugin/whichkey.lua | 1 | ||||
| -rw-r--r-- | .config/nvim/lua/pack.lua | 14 | 
2 files changed, 15 insertions, 0 deletions
| diff --git a/.config/nvim/after/plugin/whichkey.lua b/.config/nvim/after/plugin/whichkey.lua index 9635ce0..4e539db 100644 --- a/.config/nvim/after/plugin/whichkey.lua +++ b/.config/nvim/after/plugin/whichkey.lua @@ -35,6 +35,7 @@ wk.register({  		s = { function()  			ts.grep_string({ search = vim.fn.input("Grep > ") })  		end, 'grep string', noremap = true, silent = true }, +		t = { ':TodoTelescope keywords=TODO,HACK,WARN,PERF,NOTE,TEST<CR>', 'todo', noremap = true, silent = true }  	},  	g = {  		name = 'git', diff --git a/.config/nvim/lua/pack.lua b/.config/nvim/lua/pack.lua index 8bb909e..182824c 100644 --- a/.config/nvim/lua/pack.lua +++ b/.config/nvim/lua/pack.lua @@ -97,6 +97,20 @@ return require('packer').startup({function(use)  			}  		end,  	}) +	use { +		'lukas-reineke/indent-blankline.nvim', +		config = function() +			require('ibl').setup() +		end, +	} +	use { +		'folke/todo-comments.nvim', +		requires = { {'nvim-lua/plenary.nvim'} }, +		config = function() +			require('todo-comments.config').setup {} +			require('todo-comments') +		end +	}  	use 'onsails/lspkind.nvim'  end,  config = { | 
