Add settings for Neorg and keybinds

This commit is contained in:
Archie Fox
2025-08-15 02:02:47 +03:00
parent 78a39cfbfb
commit af607b992e
8 changed files with 403 additions and 108 deletions

View File

@@ -7,39 +7,4 @@ return {
"L3MON4D3/LuaSnip",
"nvim-lua/plenary.nvim",
},
config = function()
-- ваша конфигурация
vim.opt_local.spell = false
end,
opts = {
workspaces = {
{
name = "personal",
path = "~/Share/Obsidian/default",
},
},
-- Настройка создания новых заметок
note_id_func = function(title)
return title
end,
-- Настройка ссылок
wiki_link_func = function(opts)
return require("obsidian.util").wiki_link_id_prefix(opts)
end,
-- Настройка шаблонов
templates = {
subdir = "Templates",
date_format = "%Y-%m-%d",
time_format = "%H:%M",
},
-- Автодополнение
completion = {
nvim_cmp = false,
min_chars = 2,
},
},
}