mirror of
https://github.com/iofq/nvim.nix.git
synced 2026-01-23 08:55:16 -06:00
custom dart tabline
This commit is contained in:
parent
d7ae87e671
commit
9457c7436e
12 changed files with 424 additions and 51 deletions
|
|
@ -8,7 +8,7 @@ return {
|
|||
quickfile = { enabled = true },
|
||||
notifier = {
|
||||
enabled = true,
|
||||
timeout = 5000,
|
||||
timeout = 4000,
|
||||
},
|
||||
styles = {
|
||||
notification = {
|
||||
|
|
@ -21,6 +21,9 @@ return {
|
|||
words = { enabled = true },
|
||||
picker = {
|
||||
enabled = true,
|
||||
jump = {
|
||||
reuse_win = true,
|
||||
},
|
||||
matcher = {
|
||||
frecency = true,
|
||||
history_bonus = true,
|
||||
|
|
@ -38,9 +41,9 @@ return {
|
|||
smart = {
|
||||
multi = {
|
||||
'marks',
|
||||
{ source = 'buffers', current = false },
|
||||
{ source = 'buffers', current = false },
|
||||
'recent',
|
||||
{ source = 'files', hidden = true },
|
||||
{ source = 'files', hidden = true },
|
||||
{ source = 'git_files', untracked = true },
|
||||
},
|
||||
},
|
||||
|
|
@ -94,6 +97,7 @@ return {
|
|||
'<leader><leader>',
|
||||
function()
|
||||
vim.cmd.delmarks { args = { '0-9' } }
|
||||
vim.cmd.delmarks { args = { '"' } }
|
||||
Snacks.picker.smart()
|
||||
end,
|
||||
desc = 'Fuzzy find smart',
|
||||
|
|
@ -175,6 +179,13 @@ return {
|
|||
end,
|
||||
desc = 'pick notifications',
|
||||
},
|
||||
{
|
||||
'gO',
|
||||
function()
|
||||
Snacks.picker.treesitter()
|
||||
end,
|
||||
desc = 'pick treesitter nodes',
|
||||
},
|
||||
{
|
||||
'<leader>fm',
|
||||
function()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue