feat: one theme and flash
This commit is contained in:
parent
b3adca1d8b
commit
c09d9d0ed0
4
init.lua
4
init.lua
|
@ -203,7 +203,9 @@ require('lazy').setup({
|
|||
--
|
||||
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
|
||||
{ import = 'custom.plugins' },
|
||||
}, {})
|
||||
}, {
|
||||
concurrency = 10,
|
||||
})
|
||||
|
||||
-- [[ Setting options ]]
|
||||
-- See `:help vim.o`
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
'rockyzhang24/arctic.nvim',
|
||||
dependencies = { 'rktjmp/lush.nvim' },
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
return {
|
||||
'folke/flash.nvim',
|
||||
event = 'VeryLazy',
|
||||
---@type Flash.Config
|
||||
opts = {},
|
||||
keys = {
|
||||
{
|
||||
's',
|
||||
mode = { 'n', 'x', 'o' },
|
||||
function()
|
||||
-- default options: exact mode, multi window, all directions, with a backdrop
|
||||
require('flash').jump()
|
||||
end,
|
||||
},
|
||||
{
|
||||
'S',
|
||||
mode = { 'n', 'o', 'x' },
|
||||
function()
|
||||
require('flash').treesitter()
|
||||
end,
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue