mirror of
https://codeberg.org/Mo8it/dotfiles.git
synced 2024-12-27 01:01:05 +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.pumblend = 10
|
||||
|
||||
-- Highlight on yank
|
||||
local function custom_highlight_on_yank()
|
||||
return vim.highlight.on_yank({ timeout = 1200 })
|
||||
|
@ -50,8 +52,5 @@ vim.api.nvim_create_autocmd("TextYankPost", {
|
|||
callback = custom_highlight_on_yank,
|
||||
})
|
||||
|
||||
-- Noevide
|
||||
vim.g.neovide_refresh_rate = 90
|
||||
|
||||
-- Disable diagnostics
|
||||
vim.diagnostic.disable()
|
||||
|
|
Loading…
Reference in a new issue