1
Fork 0

Vim clipboard, fixed esc inside tmux and other stuff

This commit is contained in:
Matei Adriel 2022-09-12 13:48:29 +02:00
parent f17b922131
commit f981cb55e9
4 changed files with 67 additions and 0 deletions
dotfiles/neovim/ftdetect

View file

@ -0,0 +1,7 @@
vim.api.nvim_create_autocmd({ "BufNewFile", "BufRead" }, {
group = vim.api.nvim_create_augroup("Detect hkf", {}),
pattern = "*.hkf",
callback = function()
vim.opt.filetype = "hkf"
end
})