Allow refactoring (plus minor tweaks)

This commit is contained in:
Fabian Missbrenner 2025-03-12 12:36:38 +01:00
parent 2be2cae29c
commit 3569e4ec8e
5 changed files with 89 additions and 11 deletions

View file

@ -154,7 +154,7 @@ vim.opt.inccommand = 'split'
vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor.
-- vim.opt.scrolloff = 10
vim.opt.scrolloff = 10
-- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()`
@ -384,11 +384,20 @@ require('lazy').setup({
-- You can put your default mappings / updates / etc. in here
-- All the info you're looking for is in `:help telescope.setup()`
--
-- defaults = {
-- mappings = {
-- i = { ['<c-enter>'] = 'to_fuzzy_refine' },
-- },
-- },
defaults = {
-- mappings = {
-- i = { ['<c-enter>'] = 'to_fuzzy_refine' },
-- },
layout_strategy = 'vertical',
layout_config = {
vertical = {
width = 0.9,
height = 0.9,
preview_height = 0.6,
preview_cutoff = 0,
},
},
},
-- pickers = {}
extensions = {
['ui-select'] = {