tangled
alpha
login
or
join now
seth.computer
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
nvim: desc for new note shortcut
seth.computer
2 months ago
c0bddf20
3631964c
verified
This commit was signed with the committer's
known signature
.
seth.computer
SSH Key Fingerprint:
SHA256:utUtG8j2hgvZ0Rnm/rPJiqFu4NT5bjOnC26AUIBh500=
+2
-1
1 changed file
expand all
collapse all
unified
split
nvim
lua
config
keys.lua
+2
-1
nvim/lua/config/keys.lua
reviewed
···
146
146
local timestamp = os.date("%Y%m%d%H%M%S")
147
147
vim.fn.system("mkdir -p .notes.sethetter/")
148
148
vim.cmd("edit .notes.sethetter/" .. timestamp .. ".md")
149
149
-
end)
149
149
+
end, { desc = "New personal note" })
150
150
+
150
151
vim.keymap.set("n", "<leader>N", function()
151
152
require("telescope.builtin").find_files({
152
153
cwd = ".notes.sethetter",