Replies: 4 comments 2 replies
-
you need to set a workspace in your gtd config |
Beta Was this translation helpful? Give feedback.
0 replies
-
I tried workspace = ”my_workspace”
But same error
… On 17 May 2022, at 18:32, max397574 ***@***.***> wrote:
you need to set a workspace in your gtd config
—
Reply to this email directly, view it on GitHub <#460 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AEFRZHZ4RO7CNAL3BTOPMILVKO3YDANCNFSM5WFFWBFA>.
You are receiving this because you authored the thread.
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mrossinek
-
@mrossinek Cant we have more than one workspace ? |
Beta Was this translation helpful? Give feedback.
1 reply
-
ok found the spell error thanks |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
norg gtd always complaining Workspace not defined.
couldnt find a solution
Best
Lunarvim rolling and neovim 0..8
Here my config 👍
``
lvim.plugins = {
{ "folke/tokyonight.nvim" },
{ "lunarvim/colorschemes" },
{ "arcticicestudio/nord-vim" },
{
"folke/trouble.nvim",
cmd = "TroubleToggle",
},
{
"folke/todo-comments.nvim",
event = "BufRead",
config = function()
require("todo-comments").setup()
end,
},
{
"nvim-neorg/neorg",
tag = "*",
config = function()
require('neorg').setup {
load = {
["core.defaults"] = {},
["core.norg.concealer"] = {}, -- Allows for use of icons
["core.gtd.base"] = {
configs = {
-- Note that this table is optional and doesn't need to be provided
}
},
["core.gtd.ui"] = {},
["core.keybinds"] = { -- Configure core.keybinds
config = {
default_keybinds = true, -- Generate the default keybinds
neorg_leader = "o"
}
},
},
{
"itchyny/vim-cursorword",
event = { "BufEnter", "BufNewFile" },
config = function()
vim.api.nvim_command("augroup user_plugin_cursorword")
vim.api.nvim_command("autocmd!")
vim.api.nvim_command("autocmd FileType NvimTree,lspsagafinder,dashboard,vista let b:cursorword = 0")
vim.api.nvim_command("autocmd WinEnter * if &diff || &pvw | let b:cursorword = 0 | endif")
vim.api.nvim_command("autocmd InsertEnter * let b:cursorword = 0")
vim.api.nvim_command("autocmd InsertLeave * let b:cursorword = 1")
vim.api.nvim_command("augroup END")
end
},
}
``
Beta Was this translation helpful? Give feedback.
All reactions