Commit Diff


commit - 30d6c9c8993c8a595a0f3140915b305ff29c1dd7
commit + 42726e751f056c3b0a1412fbeb76abd9ea5b9202
blob - 185d7381d7474226e73d0f99e338338f4b47dadf
blob + 7f8623780dcc67f599f338a4f8335cbe85684d9b
--- init.lua
+++ init.lua
@@ -11,10 +11,7 @@ require('lazy').setup({
     require('plugins/mini'),
     require('plugins/autopairs'),
     require('plugins/gitsigns'),
-    require('plugins/diffview'),
-    require('plugins/colors')
-    -- I'm not using treesitter anymore
-    -- require('plugins/treesitter'),
+    require('plugins/colors'),
 })
 
 require('config.options')
blob - e787d2e9fa4892aba0cbb41caa8233d7252ba642 (mode 644)
blob + /dev/null
--- lua/plugins/diffview.lua
+++ /dev/null
@@ -1,3 +0,0 @@
-return {
-  "sindrets/diffview.nvim",
-}
blob - ed5f4ea6758c1dcfa8303a2cc6c6107778c976c5 (mode 644)
blob + /dev/null
--- lua/plugins/treesitter.lua
+++ /dev/null
@@ -1,27 +0,0 @@
-return {
-  {
-    'nvim-treesitter/nvim-treesitter',
-    build = ':TSUpdate',
-    main = 'nvim-treesitter.configs', -- Sets main module to use for opts
-    -- [[ Configure Treesitter ]] See `:help nvim-treesitter`
-    opts = {
-      ensure_installed = { 'html', 'lua', 'typescript', 'javascript', 'php' },
-      -- Autoinstall languages that are not installed
-      auto_install = false,
-      highlight = {
-        enable = true,
-        -- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules.
-        --  If you are experiencing weird indenting issues, add the language to
-        --  the list of additional_vim_regex_highlighting and disabled languages for indent.
-        -- additional_vim_regex_highlighting = { 'ruby' },
-      },
-      indent = { enable = true, disable = { 'ruby' } },
-    },
-    -- There are additional nvim-treesitter modules that you can use to interact
-    -- with nvim-treesitter. You should go explore a few and see what interests you:
-    --
-    --    - Incremental selection: Included, see `:help nvim-treesitter-incremental-selection-mod`
-    --    - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context
-    --    - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects
-  },
-}