Fix | Update telescope integration for zk
This commit is contained in:
parent
5e51f8ed36
commit
51c8fa7853
@ -120,7 +120,7 @@ return require('packer').startup(function(use)
|
||||
'nvim-telescope/telescope.nvim',
|
||||
requires = {{'nvim-lua/plenary.nvim'}},
|
||||
config = function() require "plugins.telescope" end,
|
||||
cmd = 'Telescope'
|
||||
event = "UIEnter"
|
||||
}
|
||||
use {'preservim/tagbar', cmd = 'TagbarToggle'}
|
||||
use {
|
||||
@ -185,7 +185,9 @@ return require('packer').startup(function(use)
|
||||
use {"tpope/vim-fugitive", cmd = "G"}
|
||||
use {
|
||||
"mickael-menu/zk-nvim",
|
||||
filetypes = {'markdown'},
|
||||
requires = {"nvim-telescope/telescope.nvim"},
|
||||
after = {"nvim-telescope/telescope.nvim"},
|
||||
ft = {'markdown'},
|
||||
config = function() require "plugins.zk" end
|
||||
}
|
||||
|
||||
|
@ -1,27 +1,6 @@
|
||||
require('telescope').setup {
|
||||
defaults = {
|
||||
-- Default configuration for telescope goes here:
|
||||
-- config_key = value,
|
||||
-- ..
|
||||
layout_strategy = 'vertical',
|
||||
layout_config = {height = 0.95}
|
||||
|
||||
},
|
||||
pickers = {
|
||||
-- Default configuration for builtin pickers goes here:
|
||||
-- picker_name = {
|
||||
-- picker_config_key = value,
|
||||
-- ...
|
||||
-- }
|
||||
-- Now the picker_config_key will be applied every time you call this
|
||||
-- builtin picker
|
||||
},
|
||||
extensions = {
|
||||
-- Your extension configuration goes here:
|
||||
-- extension_name = {
|
||||
-- extension_config_key = value,
|
||||
-- }
|
||||
-- please take a look at the readme of the extension you want to configure
|
||||
}
|
||||
defaults = {layout_strategy = 'vertical', layout_config = {height = 0.95}},
|
||||
pickers = {},
|
||||
extensions = {}
|
||||
}
|
||||
|
||||
|
@ -7,15 +7,12 @@ require("zk").setup({
|
||||
-- `config` is passed to `vim.lsp.start_client(config)`
|
||||
config = {
|
||||
cmd = {"zk", "lsp"},
|
||||
name = "zk",
|
||||
name = "zk"
|
||||
-- on_attach = ...
|
||||
-- etc, see `:h vim.lsp.start_client()`
|
||||
},
|
||||
|
||||
-- automatically attach buffers in a zk notebook that match the given filetypes
|
||||
auto_attach = {
|
||||
enabled = true,
|
||||
filetypes = { "markdown" },
|
||||
},
|
||||
},
|
||||
auto_attach = {enabled = true, filetypes = {"markdown"}}
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user