Bohdan's terminal configuration

separated markdown plugin config

bpavuk 21c26ec6 78401299

Changed files
+12 -11
nvim
.config
nvim
lua
-11
nvim/.config/nvim/lua/plugins/init.lua
··· 14 14 }, 15 15 16 16 { 17 - "MeanderingProgrammer/render-markdown.nvim", 18 - -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' }, -- if you use the mini.nvim suite 19 - dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.icons" }, -- if you use standalone mini plugins 20 - -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons 21 - ---@module 'render-markdown' 22 - ---@type render.md.UserConfig 23 - opts = {}, 24 - ft = { "markdown", "quarto" }, 25 - }, 26 - 27 - { 28 17 "aserowy/tmux.nvim", 29 18 config = function() 30 19 return require("tmux").setup()
+12
nvim/.config/nvim/lua/plugins/markdown.lua
··· 1 + return { 2 + { 3 + "MeanderingProgrammer/render-markdown.nvim", 4 + -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' }, -- if you use the mini.nvim suite 5 + dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.icons" }, -- if you use standalone mini plugins 6 + -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons 7 + ---@module 'render-markdown' 8 + ---@type render.md.UserConfig 9 + opts = {}, 10 + ft = { "markdown", "quarto" }, 11 + } 12 + }