nvim: obsidian, trouble mappings and more

This commit is contained in:
2024-07-15 19:34:04 +03:00
parent bc42df2a96
commit 9ef8381c8b
6 changed files with 69 additions and 59 deletions

View File

@ -31,6 +31,9 @@ return {
vue = {
require("formatter.filetypes.vue").prettier,
},
typescriptreact = {
require("formatter.filetypes.typescriptreact").prettier,
},
javascript = {
require("formatter.filetypes.javascript").prettier,
},

View File

@ -7,6 +7,7 @@ return {
lsp.gopls.setup({})
lsp.rust_analyzer.setup({})
lsp.clangd.setup({})
lsp.tsserver.setup({})
lsp.lua_ls.setup({
settings = {
Lua = {

View 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",
},
},
},
}

View File

@ -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",
},
}