-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
33 lines (27 loc) · 823 Bytes
/
Copy pathsettings.lua
File metadata and controls
33 lines (27 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
-- Please check `lua/core/settings.lua` to view the full list of configurable settings
local settings = {}
-- Examples
settings["use_ssh"] = false
settings["colorscheme"] = "catppuccin"
settings["transparent_background"] = true
settings["lsp_inlayhints"] = true
settings["diagnostics_virtual_text"] = true
settings["diagnostics_virtual_lines"] = true
settings["gui_config"] = {
font_name = "JetBrainsMono Nerd Font",
font_size = 13,
}
settings["neovide_config"] = {
no_idle = true,
refresh_rate = 120,
cursor_vfx_mode = "railgun",
cursor_vfx_opacity = 200.0,
cursor_antialiasing = true,
cursor_trail_length = 0.05,
cursor_animation_length = 0.03,
cursor_vfx_particle_speed = 20.0,
cursor_vfx_particle_density = 5.0,
cursor_vfx_particle_lifetime = 1.2,
}
settings["search_backend"] = "fzf"
return settings