From 882282edecb1bf7bd7d32953117d42d769229f1d Mon Sep 17 00:00:00 2001 From: qwjyh Date: Tue, 14 Mar 2023 00:29:35 +0900 Subject: [PATCH] add: nvim: errorbells --- dotfiles/neovim/init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotfiles/neovim/init.lua b/dotfiles/neovim/init.lua index e3bc895..d90afd8 100644 --- a/dotfiles/neovim/init.lua +++ b/dotfiles/neovim/init.lua @@ -109,6 +109,8 @@ vim.o.mouse = 'a' vim.o.signcolumn = 'yes' vim.o.ignorecase = true -- keep signcolumn on vim.o.smartcase = true +vim.o.errorbells = true +-- vim.o.visualbell = false -- this is default vim.opt.undofile = true -- Save undo history vim.o.completeopt = 'menuone,noselect' -- for better completion experience vim.o.termguicolors = true