diff --git a/lua/lazy_cfg/telescope/init.lua b/lua/lazy_cfg/telescope/init.lua index 5917ac6a..10cfb0a6 100644 --- a/lua/lazy_cfg/telescope/init.lua +++ b/lua/lazy_cfg/telescope/init.lua @@ -35,7 +35,11 @@ local load_ext = Telescope.load_extension local Opts = { defaults = { layout_strategy = 'flex', - layout_config = { vertical = { width = vim.opt.columns:get() * 3 / 4 } }, + layout_config = { + vertical = { + width = math.floor(vim.opt.columns:get() * 3 / 4), + }, + }, mappings = { i = { [''] = 'which_key', @@ -54,7 +58,6 @@ local Opts = { find_files = { theme = 'dropdown' }, lsp_definitions = { theme = 'dropdown' }, pickers = { theme = 'dropdown' }, - notify = { theme = 'dropdown' }, }, }