added transmission settings

This commit is contained in:
2025-06-21 12:35:06 +05:00
parent 94719ad186
commit fc643c007f
3 changed files with 85 additions and 2 deletions

View File

@ -36,6 +36,10 @@ vim.api.nvim_create_autocmd("FileType", {
pattern = "cs",
command = "setlocal shiftwidth=4 tabstop=4"
})
vim.api.nvim_create_autocmd("FileType", {
pattern = "Jenkinsfile",
command = "setlocal shiftwidth=2 tabstop=2"
})
vim.cmd "au VimEnter * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Escape'"
vim.cmd "au VimLeave * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Caps_Lock'"