From 8a5df9ee7fcabd16bfed2293dfcd554d83d811ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Mon, 12 Feb 2024 00:27:45 +0100 Subject: [PATCH] Better new note --- nvim/lua/plugins/obsidian.lua | 1 + zsh/.zshrc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/nvim/lua/plugins/obsidian.lua b/nvim/lua/plugins/obsidian.lua index 4b6a3e1..7cd2ec2 100644 --- a/nvim/lua/plugins/obsidian.lua +++ b/nvim/lua/plugins/obsidian.lua @@ -55,6 +55,7 @@ return { }, }, }, + note_id_func = function(title) return title end, disable_frontmatter = true, ui = { hl_groups = { diff --git a/zsh/.zshrc b/zsh/.zshrc index 266fa99..fc26d97 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -90,7 +90,7 @@ function zvm_after_init() { # Use FZY instead of FZF for ctrl-t function find_files() { zle -I - BUFFER=cd "$(fd -H . ~/Workspace -t d | fzy -l 20)" + BUFFER=cd "$(fd -H . ~/Workspace ~/Containers -t d | fzy -l 20)" zle accept-line clear }