2021-08-08 15:33:23 +03:00
|
|
|
local cmd = vim.cmd
|
|
|
|
|
|
|
|
-- Remap exit terminal mode to esc
|
|
|
|
cmd('au TermOpen * tnoremap <buffer> <Esc> <c-\\><c-n>')
|
|
|
|
|
|
|
|
-- Fix YAML indentation
|
|
|
|
cmd('au FileType yaml setlocal ts=2 sts=2 sw=2 expandtab')
|
2021-10-06 19:08:11 +03:00
|
|
|
|
|
|
|
-- Run coq.nvim on startup
|
|
|
|
cmd('au VimEnter * COQnow --shut-up')
|