From fae4d5e51d2624b1a7e15edce77a0323139537a7 Mon Sep 17 00:00:00 2001 From: fm39hz-workstation Date: Mon, 20 May 2024 22:56:12 +0700 Subject: [PATCH] feat: add otter --- lazy-lock.json | 1 + lua/plugins/markdown.lua | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/lazy-lock.json b/lazy-lock.json index 499ef24..b7339cd 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -74,6 +74,7 @@ "oil.nvim": { "branch": "master", "commit": "06a19f77f1a1da37b675635e6f9c5b5d50bcaacd" }, "omnisharp-extended-lsp.nvim": { "branch": "main", "commit": "6e0aa6465f8fa8ac6c833f6ac4713adfee0202a0" }, "one-small-step-for-vimkind": { "branch": "main", "commit": "0dd306e68bf79b38cc01b15c22047e6a867df7de" }, + "otter.nvim": { "branch": "main", "commit": "5cd161f28835fada50d99c89dc05041565a27bdb" }, "outline.nvim": { "branch": "main", "commit": "139e363dd5a44f66a51041264aabe3884df4dd98" }, "overseer.nvim": { "branch": "master", "commit": "7a9b654df4b3b246d05fff857f32e9fb8ddfb013" }, "persistence.nvim": { "branch": "main", "commit": "5fe077056c821aab41f87650bd6e1c48cd7dd047" }, diff --git a/lua/plugins/markdown.lua b/lua/plugins/markdown.lua index d65be8c..4cc7a5e 100644 --- a/lua/plugins/markdown.lua +++ b/lua/plugins/markdown.lua @@ -13,4 +13,14 @@ return { dir = "~/Workspace/Notes/", }, }, + { + "jmbuhr/otter.nvim", + lazy = true, + ft = "markdown", + dependencies = { + "hrsh7th/nvim-cmp", -- optional, for completion + "neovim/nvim-lspconfig", + "nvim-treesitter/nvim-treesitter", + }, + }, }