From 00bd4d7485bb6873fa53dd30d1d4d38826eec0d4 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 3 Oct 2022 14:03:08 +0200 Subject: Added vim.opt.ch --- config/nvim/init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/nvim/init.lua b/config/nvim/init.lua index da1d353..e6d6697 100644 --- a/config/nvim/init.lua +++ b/config/nvim/init.lua @@ -43,6 +43,8 @@ vim.opt.laststatus = 2 -- always a statusline (all window) vim.opt.showcmd = true -- show current partial command in the bottom right vim.opt.showmode = false -- dont show current mode (i.e --INSERT--) +vim.opt.ch = 0 -- make command line invisible when not typing command + -- remove ugly treesitter error highlight -- require "nvim-treesitter.highlight" -- local hlmap = vim.treesitter.highlighter.hl_map -- cgit