all repos

init.lua @ d4cf0f7f34295d84929fb2603cb00fbefc743697

my nvim config
1 files changed, 5 insertions(+), 9 deletions(-)
refactor(notes): change command for opening the notes
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2024-07-12 20:44:37 +0300
Parent: 9cae63d
M lua/scratch/notes.lua

@@ -3,7 +3,7 @@

local config = { file_extenson = ".md", data_path = ("%s/ol_notes/"):format(vim.fn.stdpath "data"), - open_cmd = "e", + open_cmd = "70vs", } ---@return string

@@ -25,17 +25,13 @@ return config.data_path .. "/" .. p .. config.file_extenson

end function notes.project() - vim.cmd[config.open_cmd] { - args = { notes.get_note_path(notes.get_project_path()) }, - bang = true, - } + vim.cmd( + config.open_cmd .. "! " .. notes.get_note_path(notes.get_project_path()) + ) end function notes.global() - vim.cmd[config.open_cmd] { - args = { config.data_path .. "/notes.md" }, - bang = true, - } + vim.cmd(config.open_cmd .. "! " .. config.data_path .. "/notes.md") end return notes