This commit is contained in:
Hanul 2025-12-26 19:16:18 -08:00 committed by GitHub
commit 4b38fac5a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -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()`