mirror of
https://codeberg.org/Mo8it/dotfiles.git
synced 2024-12-29 03:13:42 +00:00
Add Goneovim
This commit is contained in:
parent
6ab4730293
commit
97f995addc
2 changed files with 10 additions and 3 deletions
8
.config/goneovim/settings.toml
Normal file
8
.config/goneovim/settings.toml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
[Editor]
|
||||||
|
SmoothScroll = true
|
||||||
|
|
||||||
|
[Cursor]
|
||||||
|
SmoothMove = true
|
||||||
|
|
||||||
|
[MiniMap]
|
||||||
|
Disable = false
|
|
@ -40,6 +40,8 @@ o.linebreak = true
|
||||||
|
|
||||||
o.laststatus = 3
|
o.laststatus = 3
|
||||||
|
|
||||||
|
o.pumblend = 10
|
||||||
|
|
||||||
-- Highlight on yank
|
-- Highlight on yank
|
||||||
local function custom_highlight_on_yank()
|
local function custom_highlight_on_yank()
|
||||||
return vim.highlight.on_yank({ timeout = 1200 })
|
return vim.highlight.on_yank({ timeout = 1200 })
|
||||||
|
@ -50,8 +52,5 @@ vim.api.nvim_create_autocmd("TextYankPost", {
|
||||||
callback = custom_highlight_on_yank,
|
callback = custom_highlight_on_yank,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Noevide
|
|
||||||
vim.g.neovide_refresh_rate = 90
|
|
||||||
|
|
||||||
-- Disable diagnostics
|
-- Disable diagnostics
|
||||||
vim.diagnostic.disable()
|
vim.diagnostic.disable()
|
||||||
|
|
Loading…
Reference in a new issue