diff --git a/modules/home-manager/vim.nix b/modules/home-manager/vim.nix index f4be6c6..aa3380e 100644 --- a/modules/home-manager/vim.nix +++ b/modules/home-manager/vim.nix @@ -276,7 +276,18 @@ extraPlugins = with pkgs.vimPlugins; [ { 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;