mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
sync: from macOS
This commit is contained in:
parent
9436322a73
commit
06ddd359a7
11 changed files with 113 additions and 10 deletions
|
|
@ -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,
|
||||
})
|
||||
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue