mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
65 lines
2.4 KiB
Lua
65 lines
2.4 KiB
Lua
return {
|
|
-- {
|
|
-- "benlubas/neorg-interim-ls",
|
|
-- },
|
|
-- {
|
|
-- "nvim-neorg/neorg",
|
|
-- lazy = false, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default
|
|
--
|
|
-- version = "*", -- Pin Neorg to the latest stable release
|
|
-- config = true,
|
|
-- options = {
|
|
-- load = {
|
|
-- ["core.defaults"] = {}, -- Load all the default modules
|
|
-- ["core.concealer"] = {}, -- Allows for use of icons
|
|
-- ["core.norg.dirman"] = { -- Manages Neorg workspaces
|
|
-- config = {
|
|
-- workspaces = {
|
|
-- notes = "~/OrgFiles",
|
|
-- },
|
|
-- },
|
|
-- default_workspace = "notes",
|
|
-- },
|
|
-- ["core.neorgcmd"] = {},
|
|
-- ["core.ui.calendar"] = {},
|
|
-- ["core.looing-glass"] = {},
|
|
-- ["core.latex.renderer"] = {},
|
|
-- ["core.completion"] = {
|
|
-- config = {
|
|
-- engine = {
|
|
-- module_name = "external.lsp-completion",
|
|
-- },
|
|
-- },
|
|
-- },
|
|
-- ["external.interim-ls"] = {
|
|
-- config = {
|
|
-- -- default config shown
|
|
-- completion_provider = {
|
|
-- -- Enable or disable the completion provider
|
|
-- enable = true,
|
|
--
|
|
-- -- Show file contents as documentation when you complete a file name
|
|
-- documentation = true,
|
|
--
|
|
-- -- Try to complete categories provided by Neorg Query. Requires `benlubas/neorg-query`
|
|
-- categories = false,
|
|
--
|
|
-- -- suggest heading completions from the given file for `{@x|}` where `|` is your cursor
|
|
-- -- and `x` is an alphanumeric character. `{@name}` expands to `[name]{:$/people:# name}`
|
|
-- people = {
|
|
-- enable = false,
|
|
--
|
|
-- -- path to the file you're like to use with the `{@x` syntax, relative to the
|
|
-- -- workspace root, without the `.norg` at the end.
|
|
-- -- ie. `folder/people` results in searching `$/folder/people.norg` for headings.
|
|
-- -- Note that this will change with your workspace, so it fails silently if the file
|
|
-- -- doesn't exist
|
|
-- path = "people",
|
|
-- },
|
|
-- },
|
|
-- },
|
|
-- },
|
|
-- },
|
|
-- },
|
|
-- },
|
|
}
|