nvim: obsidian, trouble mappings and more
This commit is contained in:
@ -31,6 +31,9 @@ return {
|
||||
vue = {
|
||||
require("formatter.filetypes.vue").prettier,
|
||||
},
|
||||
typescriptreact = {
|
||||
require("formatter.filetypes.typescriptreact").prettier,
|
||||
},
|
||||
javascript = {
|
||||
require("formatter.filetypes.javascript").prettier,
|
||||
},
|
||||
|
||||
@ -7,6 +7,7 @@ return {
|
||||
lsp.gopls.setup({})
|
||||
lsp.rust_analyzer.setup({})
|
||||
lsp.clangd.setup({})
|
||||
lsp.tsserver.setup({})
|
||||
lsp.lua_ls.setup({
|
||||
settings = {
|
||||
Lua = {
|
||||
|
||||
24
.config/nvim/lua/plugins/obsidian.lua
Normal file
24
.config/nvim/lua/plugins/obsidian.lua
Normal file
@ -0,0 +1,24 @@
|
||||
return {
|
||||
"epwalsh/obsidian.nvim",
|
||||
version = "*",
|
||||
lazy = true,
|
||||
ft = "markdown",
|
||||
-- Replace the above line with this if you only want to load obsidian.nvim for markdown files in your vault:
|
||||
-- event = {
|
||||
-- -- If you want to use the home shortcut '~' here you need to call 'vim.fn.expand'.
|
||||
-- -- E.g. "BufReadPre " .. vim.fn.expand "~" .. "/my-vault/**.md"
|
||||
-- "BufReadPre path/to/my-vault/**.md",
|
||||
-- "BufNewFile path/to/my-vault/**.md",
|
||||
-- },
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
opts = {
|
||||
workspaces = {
|
||||
{
|
||||
name = "main",
|
||||
path = "~/docs/vault",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
@ -1,17 +0,0 @@
|
||||
return {
|
||||
"renerocksai/telekasten.nvim",
|
||||
config = function()
|
||||
local home = vim.fn.expand("~/docs/zettelkasten")
|
||||
require("telekasten").setup({ home = home })
|
||||
vim.g.calendar_no_mappings = true
|
||||
end,
|
||||
dependencies = {
|
||||
"renerocksai/calendar-vim",
|
||||
},
|
||||
key = {
|
||||
"<leader>z",
|
||||
},
|
||||
ft = {
|
||||
"markdown",
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user