feat: add neovim config and tmux

This commit is contained in:
2024-11-16 15:35:51 +05:00
parent b634961004
commit 1d113f2f9a
28 changed files with 2998 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
local M = {
filetype = {
javascript = {
require("formatter.filetypes.javascript").prettier,
},
typescript = {
require("formatter.filetypes.javascript").prettier,
},
},
}
vim.api.nvim_create_autocmd({ "BufWritePost" }, {
command = "FormatWriteLock",
})
return M