some changes + addet markdown plugin

This commit is contained in:
pika 2024-07-21 14:20:32 +02:00
parent 4499305245
commit e69f225dfd
3 changed files with 23 additions and 13 deletions

View file

@ -1,2 +1,2 @@
require 'pika.core' require("pika.core")
require 'pika.lazy' require("pika.lazy")

View file

@ -0,0 +1,10 @@
return {
"MeanderingProgrammer/markdown.nvim",
name = "render-markdown", -- Only needed if you have another plugin named markdown.nvim
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
config = function()
require("render-markdown").setup({})
end,
}

View file

@ -1,9 +1,9 @@
return { return {
'folke/which-key.nvim', "folke/which-key.nvim",
event = 'VeryLazy', event = "VeryLazy",
init = function() init = function()
vim.o.timeout = true vim.o.timeout = true
vim.o.timeoutlen = 300 vim.o.timeoutlen = 500
end, end,
opts = { opts = {
-- your configuration comes here -- your configuration comes here