diff options
Diffstat (limited to 'lua/plugins.lua')
| -rw-r--r-- | lua/plugins.lua | 36 |
1 files changed, 29 insertions, 7 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 0a22d75..b5c2c57 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -11,14 +11,7 @@ if not vim.loop.fs_stat(lazypath) then end vim.opt.rtp:prepend(lazypath) --- Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } --- Plug 'junegunn/fzf.vim' --- Plug 'tpope/vim-fugitive' -- Plug 'hrsh7th/vim-vsnip' --- --- " Languages --- Plug 'prabirshrestha/vim-lsp' - require("lazy").setup({ { "numToStr/Comment.nvim", lazy = false, opts = {} }, @@ -29,6 +22,7 @@ require("lazy").setup({ options = { icons_enabled = false, theme = "powerline", + -- theme = "onelight", }, } }, @@ -52,5 +46,33 @@ require("lazy").setup({ }, "lervag/vimtex", "powerman/vim-plugin-ruscmd", + "tpope/vim-fugitive", + { + 'nvim-neorg/neorg', + ft = 'norg', + cmd = 'Neorg', + priority = 30, + config = function() + require('neorg').setup { + load = { + ['core.defaults'] = {}, + ['core.concealer'] = {}, + ['core.dirman'] = { + config = { + workspaces = { + notes = "~/Documents/Notes/norg" + }, + } + }, + }, + } + end + }, + { + 'kaarmu/typst.vim', + ft = 'typst', + lazy = false, + }, + "pocco81/true-zen.nvim", }) |