File tree 3 files changed +9
-20
lines changed
3 files changed +9
-20
lines changed Original file line number Diff line number Diff line change 1
1
return function ()
2
- vim .g .maplocalleader = " ,"
3
2
require (" modules.utils" ).load_plugin (" grug-far" , {
4
3
engine = " ripgrep" ,
5
4
engines = {
Original file line number Diff line number Diff line change 1
1
return function ()
2
2
require (" modules.utils" ).load_plugin (" fcitx5" , {
3
- msg = nil , -- string | nil: printed when startup is completed
4
- imname = { -- fcitx5.Imname | nil: imnames on each mode set as prior. See `:h map-table` for more in-depth information.
5
- norm = nil , -- string | nil: imname to set in normal mode. if nil, will restore the mode on exit.
6
- ins = nil ,
7
- cmd = nil ,
8
- vis = nil ,
9
- sel = nil ,
10
- opr = nil ,
11
- term = nil ,
12
- lang = nil ,
13
- },
14
- remember_prior = true , -- boolean: if true, it remembers the mode on exit and restore it when entering the mode again.
15
- -- if false, uses what was set in config.
16
- define_autocmd = true , -- boolean: if true, defines autocmd at `ModeChanged` to switch fcitx5 mode.
17
- log = " warn" , -- string: log level (default: warn)
3
+ log = " warn" ,
4
+ define_autocmd = true ,
5
+ remember_prior = true ,
18
6
})
19
7
end
Original file line number Diff line number Diff line change 1
1
return function ()
2
2
require (" modules.utils" ).load_plugin (" smart-splits" , {
3
+ -- The default number of lines/columns to resize by at a time
4
+ default_amount = 3 ,
5
+ -- Ignored filetypes (only while resizing)
6
+ ignored_filetypes = {
7
+ " NvimTree" ,
8
+ },
3
9
-- Ignored buffer types (only while resizing)
4
10
ignored_buftypes = {
5
11
" nofile" ,
6
12
" quickfix" ,
7
13
" prompt" ,
8
14
},
9
- -- Ignored filetypes (only while resizing)
10
- ignored_filetypes = { " NvimTree" },
11
- -- the default number of lines/columns to resize by at a time
12
- default_amount = 3 ,
13
15
})
14
16
end
You can’t perform that action at this time.
0 commit comments