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
     }