4 Commits

Author SHA1 Message Date
Shaun Setlock
0c1288c286 Disable nvim-cmp .. its just always too eager. 2025-07-01 21:40:01 -04:00
Shaun Setlock
6942380733 Add obsidian related fish functions. 2025-07-01 21:39:11 -04:00
e93ccd3319 feature/fish_aliases (#22)
Co-authored-by: Shaun Setlock <shaun@setlock.net>
Co-authored-by: Shaun Setlock <ssetlock@zaether.com>
Reviewed-on: #22
2025-07-01 21:30:24 -04:00
Shaun Setlock
050d5bce0d Add plugin for obsidian integration. 2025-07-01 20:07:49 -04:00
3 changed files with 8 additions and 9 deletions

View File

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

View File

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

View File

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