You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
442 B
Lua

local M = {}
M.setup = function()
vim.g.tabby_keybinding_accept = '<M-j>'
vim.g.tabby_filetype_dict = {
bash = "shellscript",
sh = "shellscript",
cs = "csharp",
objc = "objective-c",
objcpp = "objective-cpp",
make = "makefile",
cuda = "cuda-cpp",
text = "plaintext",
rust = "rust",
go = "go",
javascript = "javascript"
}
end
return M