diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-11-16 17:57:29 -0500 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-11-16 17:57:29 -0500 |
| commit | 64991dd740175388662c45674bc65a4aa6a1d538 (patch) | |
| tree | 2e8bc196187fbb881f9f38098985c296281c894b /modules | |
| parent | 3773747c7035c7395984b6c0b8bf384f16cc9ee7 (diff) | |
| download | home-64991dd740175388662c45674bc65a4aa6a1d538.tar.gz | |
modules/neovim: make telescope prettier
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/neovim/default.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/modules/neovim/default.nix b/modules/neovim/default.nix index 8b8facf..5346574 100644 --- a/modules/neovim/default.nix +++ b/modules/neovim/default.nix @@ -99,6 +99,7 @@ in plugins = with pkgs.vimPlugins; [ # lazy loading lz-n + blink-cmp nvim-treesitter tsparsers @@ -188,7 +189,16 @@ in -- "telescope.nvim", -- cmd = "Telescope", -- after = function() - require('telescope').setup({}) + require('telescope').setup({ + defaults = { + layout_strategy = 'flex', + layout_config = { + height = {padding = 0}, + width = {padding = 0}, + prompt_position = "top", + }, + }, + }) require('telescope').load_extension('fzf') require('telescope').load_extension('ui-select') -- end, |