File tree Expand file tree Collapse file tree 4 files changed +23
-6
lines changed Expand file tree Collapse file tree 4 files changed +23
-6
lines changed Original file line number Diff line number Diff line change 3
3
" vim" ,
4
4
" w"
5
5
]
6
- }
6
+ }
Original file line number Diff line number Diff line change 6
6
"lazy.nvim" : { "branch" : " main" , "commit" : " 7e6c863bc7563efbdd757a310d17ebc95166cef3" },
7
7
"lazydev.nvim" : { "branch" : " main" , "commit" : " 8620f82ee3f59ff2187647167b6b47387a13a018" },
8
8
"lspconfig" : { "branch" : " master" , "commit" : " 88157521e890fe7fdf18bee22438875edd6300a6" },
9
+ "markview.nvim" : { "branch" : " main" , "commit" : " 6e9f1840ba33e5318285ad97c22676f55b753479" },
9
10
"mini" : { "branch" : " main" , "commit" : " 3a3178419ce9947f55708966dabf030eca40735a" },
10
- "render-markdown.nvim" : { "branch" : " main" , "commit" : " d7b646f2e6136d963e1bd3abbb9e2ac3fa90837a" },
11
11
"snacks" : { "branch" : " main" , "commit" : " d2b2b7bcbf9814d61f2e8049affed750509f44e3" },
12
- "treesitter" : { "branch" : " master" , "commit" : " 097fb77312c731347180e8907424f6c967323f05" }
12
+ "treesitter" : { "branch" : " master" , "commit" : " 097fb77312c731347180e8907424f6c967323f05" },
13
+ "typr" : { "branch" : " dev" , "commit" : " ed3e5e2fc11c4696efc1e5b0f0dd058b45a0085a" },
14
+ "volt" : { "branch" : " dev" , "commit" : " 19dd8617f30124725a3b7ee9a5d71352e79247cf" }
13
15
}
Original file line number Diff line number Diff line change @@ -57,6 +57,13 @@ opts.final = function()
57
57
opt .statusline = " %#Normal#" .. statusline_ascii .. " %="
58
58
end
59
59
60
+
61
+ vim .g .neovide_padding_top = 25
62
+ vim .g .neovide_padding_bottom = 25
63
+ vim .g .neovide_padding_right = 25
64
+ vim .g .neovide_padding_left = 25
65
+
66
+
60
67
--- Load shada after ui-enter
61
68
local shada = vim .o .shada
62
69
vim .o .shada = " "
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ local plugins = {
11
11
vim .cmd .colorscheme " catppuccin"
12
12
end ,
13
13
opts = {
14
- transparent_background = true ,
14
+ transparent_background = not vim . g . neovide ,
15
15
compile_path = vim .fn .stdpath " cache" .. " /catppuccin" ,
16
16
compile = true ,
17
17
flavour = " mocha" ,
@@ -192,6 +192,10 @@ local plugins = {
192
192
},
193
193
event = { " BufReadPost" },
194
194
opts = {
195
+ statuscolumn = {
196
+ left = { " fold" , " git" },
197
+ right = { " mark" , " sign" },
198
+ },
195
199
words = {
196
200
enabled = true ,
197
201
debounce = 500 ,
@@ -202,7 +206,11 @@ local plugins = {
202
206
},
203
207
},
204
208
indent = {
205
- enabled = true ,
209
+ scope = {
210
+ treesitter = {
211
+ enabled = true ,
212
+ },
213
+ },
206
214
},
207
215
},
208
216
},
@@ -222,7 +230,7 @@ local plugins = {
222
230
},
223
231
224
232
{
225
- " MeanderingProgrammer/render-markdown .nvim" ,
233
+ " OXY2DEV/markview .nvim" ,
226
234
ft = " markdown" ,
227
235
dependencies = {
228
236
" nvim-treesitter/nvim-treesitter" ,
You can’t perform that action at this time.
0 commit comments