dotfiles/home/.config/nvim/lua/autocmd.lua

8 lines
197 B
Lua
Raw Normal View History

local cmd = vim.cmd
-- Remap exit terminal mode to esc
cmd('au TermOpen * tnoremap <buffer> <Esc> <c-\\><c-n>')
2021-02-02 19:06:55 +02:00
-- Fix YAML indentation
cmd('au FileType yaml setlocal ts=2 sts=2 sw=2 expandtab')