Skip to content

Commit 114a1d8

Browse files
committed
pls
1 parent 224e945 commit 114a1d8

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

lua/plugins/far.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
return {
2+
{
3+
'brooth/far.vim',
4+
},
5+
}

lua/plugins/git-dev.lua

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
return {
2+
{
3+
'moyiz/git-dev.nvim',
4+
cmd = { 'GitDevOpen', 'GitDevCleanAll' },
5+
opts = {},
6+
},
7+
}

lua/plugins/nvim-ufo.lua

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
return {
2+
{
3+
'kevinhwang91/nvim-ufo',
4+
dependencies = { 'kevinhwang91/promise-async' },
5+
opts = {
6+
open_fold_hl_timeout = 400,
7+
close_fold_kinds_for_ft = { 'imports', 'comment' },
8+
preview = {
9+
win_config = {
10+
border = { '', '', '', '', '', '', '', '' },
11+
winhighlight = 'Normal:Folded',
12+
winblend = 0,
13+
},
14+
mappings = {
15+
scrollU = '<C-u>',
16+
scrollD = '<C-d>',
17+
jumpTop = '[',
18+
jumpBot = ']',
19+
},
20+
},
21+
},
22+
},
23+
}

0 commit comments

Comments
 (0)