4 Commits

Author SHA1 Message Date
Shaun Setlock
c210623de9 Allow obsidian nvim plugin to not be lazy. Fix copy paste errors in related fish functions. 2025-07-01 22:07:20 -04:00
Shaun Setlock
f1c0d9ced5 Disable nvim-cmp .. its just always too eager.
All checks were successful
Build and Push Docker Image / build-push (push) Successful in 5m27s
2025-07-01 21:46:28 -04:00
Shaun Setlock
cc828c381b Add obsidian related fish functions. 2025-07-01 21:46:28 -04:00
Shaun Setlock
58cde2e721 Add plugin for obsidian integration. 2025-07-01 21:46:28 -04:00
3 changed files with 9 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
# Defined in - @ line 1
function od --wraps='nvim +ObsidianTomorrow' --description 'alias od=nvim +ObsidianTomorrow'
function ot --wraps='nvim +ObsidianTomorrow' --description 'alias ot=nvim +ObsidianTomorrow'
nvim +ObsidianTomorrow
end

View File

@@ -1,5 +1,5 @@
# Defined in - @ line 1
function od --wraps='nvim +ObsidianYesterday' --description 'alias od=nvim +ObsidianYesterday'
function oy --wraps='nvim +ObsidianYesterday' --description 'alias oy=nvim +ObsidianYesterday'
nvim +ObsidianYesterday
end

View File

@@ -1,14 +1,15 @@
return {
"epwalsh/obsidian.nvim",
version = "*", -- recommended, use latest release instead of latest commit
lazy = true,
-- Below will load the plugin for all markdown files.
-- Disable lazy so that I can open daily notes from any directory and from outside of nvim.
-- lazy = true,
-- Below will load the plugin only for markdown files.
-- ft = "markdown",
-- Replace the above line with this if you only want to load obsidian.nvim for markdown files in your vault:
event = {
"BufReadPre /home/shaun/Obsidian/*.md",
"BufNewFile /home/shaun/Obsidian/*.md",
},
-- event = {
-- "BufReadPre /home/shaun/Obsidian/*.md",
-- "BufNewFile /home/shaun/Obsidian/*.md",
-- },
dependencies = {
-- Required.
"nvim-lua/plenary.nvim",