some changes + addet markdown plugin
This commit is contained in:
parent
4499305245
commit
e69f225dfd
3 changed files with 23 additions and 13 deletions
4
init.lua
4
init.lua
|
@ -1,2 +1,2 @@
|
|||
require 'pika.core'
|
||||
require 'pika.lazy'
|
||||
require("pika.core")
|
||||
require("pika.lazy")
|
||||
|
|
10
lua/pika/plugins/markdown.lua
Normal file
10
lua/pika/plugins/markdown.lua
Normal 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,
|
||||
}
|
|
@ -1,13 +1,13 @@
|
|||
return {
|
||||
'folke/which-key.nvim',
|
||||
event = 'VeryLazy',
|
||||
init = function()
|
||||
vim.o.timeout = true
|
||||
vim.o.timeoutlen = 300
|
||||
end,
|
||||
opts = {
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
-- refer to the configuration section below
|
||||
},
|
||||
"folke/which-key.nvim",
|
||||
event = "VeryLazy",
|
||||
init = function()
|
||||
vim.o.timeout = true
|
||||
vim.o.timeoutlen = 500
|
||||
end,
|
||||
opts = {
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
-- refer to the configuration section below
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue