mirror of https://github.com/LazyVim/starter
Add neovide configs and shell
parent
4e9059ff55
commit
36fdc6d62c
|
@ -0,0 +1,18 @@
|
|||
if vim.g.neovide then
|
||||
vim.o.guifont = "FiraCode Nerd Font:h12"
|
||||
vim.g.neovide_cursor_vfx_mode = "railgun"
|
||||
vim.g.neovide_cursor_vfx_opacity = 200
|
||||
vim.g.neovide_cursor_vfx_particle_lifetime = 0.1
|
||||
vim.g.neovide_cursor_vfx_particle_density = 10
|
||||
vim.g.neovide_cursor_vfx_particle_speed = 10
|
||||
vim.g.neovide_cursor_vfx_particle_length = 0.2
|
||||
vim.g.neovide_cursor_vfx_particle_offset = 0
|
||||
vim.g.neovide_cursor_vfx_color_map = "rainbow"
|
||||
vim.g.neovide_cursor_vfx_enable = true
|
||||
vim.g.neovide_cursor_vfx_inertia = 0.1
|
||||
vim.g.neovide_cursor_vfx_max_particles = 1000
|
||||
|
||||
vim.g.neovide_remember_window_size = true
|
||||
vim.g.neovide_refresh_rate = 60
|
||||
-- vim.g.neovide_theme = "tokyonight"
|
||||
end
|
|
@ -10,3 +10,7 @@ vim.api.nvim_set_var("gruvbox_contrast_dark", "hard")
|
|||
|
||||
vim.cmd([[let &t_Cs = "\e[4:3m"]])
|
||||
vim.cmd([[let &t_Ce = "\e[4:0m"]])
|
||||
|
||||
vim.o.shell = "powershell"
|
||||
vim.o.shellcmdflag = "-command"
|
||||
vim.o.shellquote = '"'
|
||||
|
|
Loading…
Reference in New Issue