diff --git a/init.lua b/init.lua index b98ffc61..e757c22e 100644 --- a/init.lua +++ b/init.lua @@ -166,6 +166,9 @@ vim.o.scrolloff = 10 -- See `:help 'confirm'` vim.o.confirm = true +-- Removes ANSI formatting characters (like `\033[31m`) printed by shell escape commands (like `:!ls`) +vim.env.TERM = 'dumb' + -- [[ Basic Keymaps ]] -- See `:help vim.keymap.set()`