Set vim.env.TERM to 'dumb' to remove ANSI formatting
This commit is contained in:
parent
3338d39206
commit
26b6947949
3
init.lua
3
init.lua
|
|
@ -166,6 +166,9 @@ vim.o.scrolloff = 10
|
||||||
-- See `:help 'confirm'`
|
-- See `:help 'confirm'`
|
||||||
vim.o.confirm = true
|
vim.o.confirm = true
|
||||||
|
|
||||||
|
-- Removes ANSI formatting characters (like `\033[31m`) printed by shell escape commands (like `:!ls`)
|
||||||
|
vim.env.TERM = 'dumb'
|
||||||
|
|
||||||
-- [[ Basic Keymaps ]]
|
-- [[ Basic Keymaps ]]
|
||||||
-- See `:help vim.keymap.set()`
|
-- See `:help vim.keymap.set()`
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue