aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkdx <kikoodx@paranoici.org>2023-01-22 17:55:06 +0100
committerkdx <kikoodx@paranoici.org>2023-01-22 17:55:06 +0100
commit92c8721b603176507e0989361585b625a470380e (patch)
treeeaf25ae6a942ede2b1fed5d5172df7905c89369d
parent35a27fcdc35a3f9d060cdb583c3fb1286d160750 (diff)
downloadnvim-config-92c8721b603176507e0989361585b625a470380e.tar.gz
disable showmode
-rw-r--r--init.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index 0312cbe..ce4cea6 100644
--- a/init.lua
+++ b/init.lua
@@ -22,6 +22,7 @@ vim.opt.incsearch = true
vim.opt.showmatch = true
vim.opt.autoindent = true
vim.opt.ttyfast = true
+vim.opt.showmode = false
map("n", "<space>", ":noh<cr>")
map("n", ";F", ":Telescope find_files<cr>")