this repo has no description

.config/nvim: remove duplicate filetype additions in treesitter

-13
-13
private_dot_config/nvim/lua/seruman/plugins/treesitter.lua
··· 77 77 filetype = "txtar", 78 78 } 79 79 80 - -- TODO 81 - vim.filetype.add({ 82 - pattern = { 83 - [".env.*"] = "dotenv", 84 - }, 85 - }) 86 - 87 - vim.filetype.add({ 88 - extension = { 89 - txtar = "txtar", 90 - }, 91 - }) 92 - 93 80 require("nvim-treesitter.configs").setup({ 94 81 ensure_installed = languages, 95 82