various update
This commit is contained in:
parent
bdbf733def
commit
40c0fdd6c3
|
@ -68,7 +68,6 @@
|
|||
"nvim-treesitter-endwise": { "branch": "master", "commit": "8b34305ffc28bd75a22f5a0a9928ee726a85c9a6" },
|
||||
"nvim-treesitter-textobjects": { "branch": "master", "commit": "34867c69838078df7d6919b130c0541c0b400c47" },
|
||||
"nvim-ts-autotag": { "branch": "main", "commit": "dc5e1687ab76ee02e0f11c5ce137f530b36e98b3" },
|
||||
"obsidian.nvim": { "branch": "main", "commit": "7466e3f70ffde1d3d8daf2d724da4ea9b4fa3642" },
|
||||
"one-small-step-for-vimkind": { "branch": "main", "commit": "730189c92c6fd80eb92bb6c1886392a142dba273" },
|
||||
"persistence.nvim": { "branch": "main", "commit": "f6aad7dde7fcf54148ccfc5f622c6d5badd0cc3d" },
|
||||
"plenary.nvim": { "branch": "master", "commit": "a3e3bc82a3f95c5ed0d7201546d5d2c19b20d683" },
|
||||
|
@ -92,6 +91,7 @@
|
|||
"vim-caddyfile": { "branch": "master", "commit": "24fe0720551883e407cb70ae1d7c03f162d1d5a0" },
|
||||
"vim-fugitive": { "branch": "master", "commit": "0444df68cd1cdabc7453d6bd84099458327e5513" },
|
||||
"vim-http": { "branch": "master", "commit": "7eb78e9753c10ca696d80a2668831bdd2aa08a92" },
|
||||
"vim-illuminate": { "branch": "master", "commit": "5eeb7951fc630682c322e88a9bbdae5c224ff0aa" },
|
||||
"vim-rhubarb": { "branch": "master", "commit": "ee69335de176d9325267b0fd2597a22901d927b1" },
|
||||
"vim-test": { "branch": "master", "commit": "75b64f23c923d34b56e47846a026210feb57146a" },
|
||||
"which-key.nvim": { "branch": "main", "commit": "6c1584eb76b55629702716995cca4ae2798a9cca" },
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"lazyvim.plugins.extras.editor.harpoon2",
|
||||
"lazyvim.plugins.extras.lang.nix",
|
||||
"lazyvim.plugins.extras.lang.rust",
|
||||
"lazyvim.plugins.extras.lang.svelte",
|
||||
"lazyvim.plugins.extras.lang.toml"
|
||||
],
|
||||
"news": {
|
||||
|
|
4
lua/plugins/illuminate.lua
Normal file
4
lua/plugins/illuminate.lua
Normal file
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
"RRethy/vim-illuminate",
|
||||
event = "BufReadPost",
|
||||
}
|
|
@ -1,53 +0,0 @@
|
|||
local function workspace(name)
|
||||
return {
|
||||
name = name,
|
||||
path = ("%s/Obsidian/%s"):format(vim.env.HOME, name),
|
||||
}
|
||||
end
|
||||
|
||||
local function event(name)
|
||||
return ("%s %s/Obsidian/**.md"):format(name, vim.env.HOME)
|
||||
end
|
||||
|
||||
return {
|
||||
"epwalsh/obsidian.nvim",
|
||||
cmd = {
|
||||
"ObsidianOpen",
|
||||
"ObsidianNew",
|
||||
"ObsidianToday",
|
||||
"ObsidianYesterday",
|
||||
"ObsidianWorkspace",
|
||||
"ObsidianSearch",
|
||||
"ObsidianQuickSwitch",
|
||||
},
|
||||
dependencies = {
|
||||
-- Required.
|
||||
"nvim-lua/plenary.nvim",
|
||||
|
||||
-- see below for full list of optional dependencies 👇
|
||||
},
|
||||
event = {
|
||||
event "BufReadPre",
|
||||
event "BufNewFile",
|
||||
},
|
||||
opts = {
|
||||
workspaces = {
|
||||
workspace "personal",
|
||||
workspace "work",
|
||||
workspace "stories",
|
||||
workspace "tigor",
|
||||
},
|
||||
mappings = {},
|
||||
},
|
||||
config = function(_, opts)
|
||||
require("obsidian").setup(opts)
|
||||
|
||||
vim.keymap.set("n", "gf", function()
|
||||
if require("obsidian").util.cursor_on_markdown_link() then
|
||||
return "<cmd>ObsidianFollowLink<CR>"
|
||||
else
|
||||
return "gf"
|
||||
end
|
||||
end, { noremap = false, expr = true, desc = "Obsidian Follow Link or Fallback" })
|
||||
end,
|
||||
}
|
Loading…
Reference in a new issue