removed app specific plugins

This commit is contained in:
2024-06-02 10:25:45 -07:00
parent b95d9060b2
commit aa73d69c41
3 changed files with 0 additions and 68 deletions

View File

@@ -1,26 +0,0 @@
return {
"nvim-neorg/neorg",
build = ":Neorg sync-parsers",
dependencies = { "nvim-lua/plenary.nvim" },
config = function()
require("neorg").setup {
load = {
["core.defaults"] = {}, -- Loads default behaviour
["core.concealer"] = {}, -- Adds pretty icons to your documents
["core.summary"] = {},
["core.tempus"] = {},
["core.dirman"] = {
config = {
workspaces = {
work = "~/Documents/Slac/"
},
},
}, -- Manages Neorg workspaces
["core.fs"] = {},
["core.integrations.treesitter"] = {},
["core.ui.calendar"] = {},
},
}
end
}

View File

@@ -1,18 +0,0 @@
return{
'lervag/vimtex',
config = function()
-- This is necessary for VimTeX to load properly. The "indent" is optional.
-- Note that most plugin managers will do this automatically.
vim.cmd("filetype plugin indent on")
-- This enables Vim's and neovim's syntax-related features. Without this, some
-- VimTeX features will not work (see ":help vimtex-requirements" for more
--info).
vim.cmd("syntax enable")
-- Viewer options: One may configure the viewer either by specifying a built-in
-- viewer method:
vim.cmd("let g:vimtex_view_method = 'zathura'")
end,
}