sync: from macOS

This commit is contained in:
js0ny 2024-12-01 07:07:57 +00:00
parent 9436322a73
commit 06ddd359a7
11 changed files with 113 additions and 10 deletions

View file

@ -22,6 +22,8 @@ vim.api.nvim_create_autocmd("FileType", {
pattern = "markdown",
callback = function()
set_markdown_keymaps(0)
vim.opt_local.shiftwidth = 2
vim.opt_local.tabstop = 2
end,
})

View file

@ -1,6 +1,17 @@
return {
{ import = "plugins.mod.lspconfig" },
{ "MeanderingProgrammer/render-markdown.nvim" },
-- {
-- "OXY2DEV/markview.nvim",
-- lazy = false, -- Recommended
-- -- ft = "markdown" -- If you decide to lazy-load anyway
--
-- dependencies = {
-- "nvim-treesitter/nvim-treesitter",
-- "nvim-tree/nvim-web-devicons"
-- }
-- },
{ "williamboman/mason.nvim", config = true },
{
"williamboman/mason-lspconfig.nvim",

View file

@ -1,7 +1,7 @@
return {
"epwalsh/obsidian.nvim",
version = "*", -- recommended, use latest release instead of latest commit
lazy = true,
lazy = false,
ft = "markdown",
-- Replace the above line with this if you only want to load obsidian.nvim for markdown files in your vault:
-- event = {
@ -21,7 +21,7 @@ return {
workspaces = {
{
name = "personal",
path = "/mnt/c/Users/citoy/Obsidian",
path = "~/Obsidian",
},
},
completion = {