167 current 2024-03-13 12:12:01 24.05.20240309.3030f18 6.7.9-zen1 *
This commit is contained in:
parent
906770fd82
commit
f5f00b5d63
1 changed files with 12 additions and 1 deletions
|
|
@ -276,7 +276,18 @@
|
||||||
extraPlugins = with pkgs.vimPlugins; [
|
extraPlugins = with pkgs.vimPlugins; [
|
||||||
{
|
{
|
||||||
plugin = dressing-nvim;
|
plugin = dressing-nvim;
|
||||||
config = ''lua require('dressing').setup()'';
|
config = '' lua function config()
|
||||||
|
local theme = require("telescope.themes").get_dropdown()
|
||||||
|
|
||||||
|
theme.layout_config = { width = 60, height = 17 }
|
||||||
|
|
||||||
|
require("dressing").setup({
|
||||||
|
input = { enabled = false },
|
||||||
|
select = { backend = { "telescope" }, telescope = theme }
|
||||||
|
})
|
||||||
|
end
|
||||||
|
config()
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
plugin = overseer-nvim;
|
plugin = overseer-nvim;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue