aboutsummaryrefslogtreecommitdiff
path: root/Common/nvim/lua/plugins.lua
diff options
context:
space:
mode:
authorjakobst1n <jakob.stendahl@outlook.com>2023-12-10 15:01:44 +0100
committerjakobst1n <jakob.stendahl@outlook.com>2023-12-10 15:01:44 +0100
commitaf699f191d7106c46733ed63e596abc2265b8f06 (patch)
tree566d3b8bb24a9ef4e4924ce5f1527013b0e2ba03 /Common/nvim/lua/plugins.lua
parentc370d604fb6038aae5638ac4ca94b6102d104682 (diff)
downloaddotfiles-af699f191d7106c46733ed63e596abc2265b8f06.tar.gz
dotfiles-af699f191d7106c46733ed63e596abc2265b8f06.zip
Some quick changes
Diffstat (limited to 'Common/nvim/lua/plugins.lua')
-rwxr-xr-xCommon/nvim/lua/plugins.lua28
1 files changed, 27 insertions, 1 deletions
diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua
index 3a098a9..1f96566 100755
--- a/Common/nvim/lua/plugins.lua
+++ b/Common/nvim/lua/plugins.lua
@@ -154,7 +154,7 @@ return require('packer').startup(function(use)
}
--use 'kabouzeid/nvim-lspinstall'
use {
- 'williamboman/nvim-lsp-installer',
+ 'williamboman/mason.nvim',
config = function()
end,
@@ -181,6 +181,32 @@ return require('packer').startup(function(use)
'ledger/vim-ledger'
}
+ -- VimWiki stuff
+ use {
+ 'vimwiki/vimwiki',
+ config = function ()
+ vim.g.vimwiki_list = {
+ {
+ path = '~/Nextcloud/wiki/P01/',
+ syntax = 'markdown',
+ ext = 'md',
+ --nested_syntaxes = {
+ -- python = 'python',
+ --},
+ },
+ {
+ path = '~/Nextcloud/wiki/I45',
+ syntax = 'markdown',
+ ext = 'md',
+ },
+ }
+ vim.g.vimwiki_global_ext = 0
+ end,
+ }
+ use {
+ 'mattn/calendar-vim'
+ }
+
-- packer.nvim
-- Automatically set up your configuration after cloning packer.nvim
-- Put this at the end after all plugins