.config/nvim/lua/plugins/filetype.lua

changeset 1064
fcfa295076a8
parent 1060
c20cb89a2ee9
child 1068
537a428597b5
--- a/.config/nvim/lua/plugins/filetype.lua
+++ b/.config/nvim/lua/plugins/filetype.lua
@@ -8,30 +8,30 @@ g.perl_compiler_force_warnings = 0
 
 return {
   {
-    'nvim-treesitter/nvim-treesitter',
+    "nvim-treesitter/nvim-treesitter",
     build = function()
-      require('nvim-treesitter.install').update({ with_sync = true })
+      require("nvim-treesitter.install").update({ with_sync = true })
     end,
     config = function()
-      require('nvim-treesitter.configs').setup({
+      require("nvim-treesitter.configs").setup({
         highlight = { enable = true },
         indent = { enable = true },
         ensure_installed = {
-          'c',
-          'comment',
-          'eex',
-          'elixir',
-          'heex',
-          'help',
-          'lua',
-          'surface',
-          'vim',
+          "c",
+          "comment",
+          "eex",
+          "elixir",
+          "heex",
+          "help",
+          "lua",
+          "surface",
+          "vim",
         },
       })
     end,
   },
-  'Shougo/vinarise.vim',
-  'asciidoc/vim-asciidoc',
-  {'vim-perl/vim-perl', branch = 'dev'},
-  'yko/mojo.vim',
+  "Shougo/vinarise.vim",
+  "asciidoc/vim-asciidoc",
+  { "vim-perl/vim-perl", branch = "dev" },
+  "yko/mojo.vim",
 }

mercurial