Vim clipboard, fixed esc inside tmux and other stuff
This commit is contained in:
parent
f17b922131
commit
f981cb55e9
4 changed files with 67 additions and 0 deletions
dotfiles/neovim/ftdetect
7
dotfiles/neovim/ftdetect/hkf.lua
Normal file
7
dotfiles/neovim/ftdetect/hkf.lua
Normal 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
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue