Mercurial > dotfiles
diff .chezmoitemplates/init.lua @ 786:90ebb41f9b14
feat: add zk and plugins
author | zegervdv <zegervdv@me.com> |
---|---|
date | Sat, 06 May 2023 16:44:17 +0200 |
parents | add486ac2046 |
children | 489b44423527 |
line wrap: on
line diff
--- a/.chezmoitemplates/init.lua Fri May 05 08:51:01 2023 +0200 +++ b/.chezmoitemplates/init.lua Sat May 06 16:44:17 2023 +0200 @@ -418,6 +418,12 @@ end, }, { + 'yaocccc/nvim-hl-mdcodeblock.lua', + after = 'nvim-treesitter', + config = function() require('hl-mdcodeblock').setup {} end, + }, + + { 'joechrisellis/lsp-format-modifications.nvim', dependencies = { 'nvim-lua/plenary.nvim' }, }, @@ -764,6 +770,11 @@ lazy = false, }, + -- Notekeeping + { + 'mickael-menu/zk-nvim', + }, + -- Integration with external tools { 'glacambre/firenvim', @@ -1363,6 +1374,10 @@ }, } +require('zk').setup { + lsp = { on_attach = on_attach, capabilities = capabilities }, +} + vim.diagnostic.config { underline = true, update_in_insert = false,