🪴 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: configure gui cursor

robin 0e239dff 78d8585b

+7 -5
+2
config/lua/ivy/config/neovide.lua
··· 47 47 48 48 vim.opt.linespace = math.floor((vim.g.lineheight - 1) * vim.g.fontsize) 49 49 50 + vim.g.neovide_cursor_smooth_blink = true 51 + 50 52 -- behavior -- 51 53 vim.g.neovide_detach_on_quit = "always_detach" 52 54
+5 -5
config/lua/ivy/config/options.lua
··· 249 249 }, 250 250 insert = { 251 251 type = "vertical", 252 - size = 200, 252 + size = 20, 253 253 animate = { 254 254 wait = 50, 255 - on = 150, 256 - off = 150, 255 + on = 250, 256 + off = 250, 257 257 }, 258 258 }, 259 259 replace = { ··· 270 270 } 271 271 272 272 local mode_lookup = { 273 - normal = "n-v-c", 274 - insert = "i-ci-ve", 273 + normal = "n-v", 274 + insert = "i-c-ci-ve", 275 275 replace = "r-cr", 276 276 operator = "o", 277 277 showmatch = "sm",