6 Commits

Author SHA1 Message Date
Shaun Setlock
68570b9baf Disable nvim-cmp .. its just always too eager. 2025-07-01 21:51:27 -04:00
Shaun Setlock
8a4eaf9be6 Add obsidian related fish functions. 2025-07-01 21:51:27 -04:00
Shaun Setlock
3396a0c55a Add plugin for obsidian integration. 2025-07-01 21:51:27 -04:00
Shaun Setlock
8b84499b36 Add fish function for opening nvim at home directory. 2025-07-01 21:22:46 -04:00
Shaun Setlock
7c73222b5f Add fish functions for a couple nvim aliases. 2025-07-01 10:42:29 -04:00
Shaun Setlock
78cb8b312f Create fish function as alias for exec'ing into dev container. 2025-06-29 20:21:37 -04:00
3 changed files with 8 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
# 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
end

View File

@@ -1,5 +1,5 @@
# 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
end

View File

@@ -1,15 +1,14 @@
return {
"epwalsh/obsidian.nvim",
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,
-- Below will load the plugin only for markdown files.
lazy = true,
-- Below will load the plugin for all 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",