File tree 4 files changed +7
-15
lines changed
4 files changed +7
-15
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "bars" : { "branch" : " main" , "commit" : " 8c87b17c19e970e95fec19b560d70b62a34c7b96" },
3
2
"catppuccin" : { "branch" : " main" , "commit" : " 4fd72a9ab64b393c2c22b168508fd244877fec96" },
4
3
"cmp" : { "branch" : " perf" , "commit" : " 6c3d595f3223c1ae7392d4fde1626355439af6c1" },
5
4
"cmp-async-path" : { "branch" : " main" , "commit" : " 03fac5dfd6f7880be2c059d58bebe007f0d6d8ee" },
Original file line number Diff line number Diff line change @@ -112,6 +112,10 @@ M.lsp = function()
112
112
callback = function (ev )
113
113
vim .bo [ev .buf ].omnifunc = " v:lua.vim.lsp.omnifunc"
114
114
115
+ --- Set minipick as default picker
116
+ local minipick = require " mini.pick"
117
+ vim .ui .select = minipick .ui_select
118
+
115
119
-- Diagnostics mappings
116
120
map (" n" , " [d" , function ()
117
121
vim .diagnostic .goto_prev { float = false }
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ opts.initial = function()
19
19
opt .expandtab = true
20
20
opt .swapfile = false
21
21
opt .undofile = true
22
- opt .cmdheight = 1
22
+ opt .cmdheight = 0
23
23
end
24
24
25
25
opts .final = function ()
@@ -36,8 +36,8 @@ opts.final = function()
36
36
opt .splitright = true
37
37
opt .scrolloff = 2
38
38
opt .sidescrolloff = 2
39
- -- local statusline_ascii = ""
40
- -- opt.statusline = "%#Normal#" .. statusline_ascii .. "%="
39
+ local statusline_ascii = " "
40
+ opt .statusline = " %#Normal#" .. statusline_ascii .. " %="
41
41
end
42
42
43
43
--- load shada after ui-enter
Original file line number Diff line number Diff line change @@ -151,17 +151,6 @@ local plugins = {
151
151
},
152
152
},
153
153
154
- {
155
- " OXY2DEV/bars-N-lines.nvim" ,
156
- lazy = false ,
157
- name = " bars" ,
158
- config = function ()
159
- require (" bars" ).setup {
160
- statuscolumn = false ,
161
- }
162
- end ,
163
- },
164
-
165
154
{
166
155
name = " options" ,
167
156
event = " VeryLazy" ,
You can’t perform that action at this time.
0 commit comments