diff --git a/init.lua b/init.lua index 3888e27..9fdee16 100644 --- a/init.lua +++ b/init.lua @@ -145,13 +145,33 @@ require('lazy').setup({ require('telescope').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 = { [''] = 'to_fuzzy_refine' }, }, }, - -- pickers = {} + pickers = { + find_files = { + theme = 'ivy', + }, + grep_string = { + theme = 'ivy', + }, + live_grep = { + theme = 'ivy', + }, + diagnostics = { + theme = 'ivy', + }, + oldfiles = { + theme = 'ivy', + }, + buffers = { + theme = 'dropdown', + previewer = false, + }, + }, extensions = { ['ui-select'] = { require('telescope.themes').get_dropdown(), diff --git a/lua/custom/plugins/neoscroll.lua b/lua/custom/plugins/neoscroll.lua index 9c4d147..b746077 100644 --- a/lua/custom/plugins/neoscroll.lua +++ b/lua/custom/plugins/neoscroll.lua @@ -17,16 +17,16 @@ return { local keymap = { [''] = function() - neoscroll.ctrl_u { duration = 150 } + neoscroll.ctrl_u { duration = 100 } end, [''] = function() - neoscroll.ctrl_d { duration = 150 } + neoscroll.ctrl_d { duration = 100 } end, [''] = function() - neoscroll.ctrl_b { duration = 300 } + neoscroll.ctrl_b { duration = 100 } end, [''] = function() - neoscroll.ctrl_f { duration = 300 } + neoscroll.ctrl_f { duration = 100 } end, ['zt'] = function() neoscroll.zt { half_win_duration = 150 }