Просмотр исходного кода

added tide for quick navigation

Thomas 10 месяцев назад
Родитель
Сommit
b24622119a
2 измененных файлов с 21 добавлено и 8 удалено
  1. 2 1
      lua/plugins/treesitter.lua
  2. 19 7
      lua/plugins/utils.lua

+ 2 - 1
lua/plugins/treesitter.lua

@@ -18,7 +18,8 @@ return {
 					"typescript",
 					"tsx",
 					"typst",
-					"markdown"
+					"markdown",
+					"markdown_inline"
 				},
 				sync_install = false,
 				highlight = { enable = true },

+ 19 - 7
lua/plugins/utils.lua

@@ -53,10 +53,11 @@ return {
 			require("neoscroll").setup({})
 		end,
 	},
+	-- Swiss Army knife among Neovim plugins
 	{ "echasnovski/mini.nvim", version = false },
-	{
-		"farmergreg/vim-lastplace", -- when open go to the closed position
-	},
+	-- when open go to the closed position
+	{ "farmergreg/vim-lastplace" },
+	-- icons
 	{
 		"nvim-tree/nvim-web-devicons",
 		config = function()
@@ -115,17 +116,17 @@ return {
 			-- code
 		end,
 	},
+	-- Extensible UI for Neovim notifications and LSP progress messages
 	{
 		"j-hui/fidget.nvim",
-		opts = {
-			-- options
-		},
+		opts = {},
 	},
+	-- extensible core UI hooks
 	{
 		"stevearc/dressing.nvim",
 		opts = {},
 	},
-	{ "eandrju/cellular-automaton.nvim" }, -- stupid animation
+	{ "eandrju/cellular-automaton.nvim" }, -- stupid animation ex :CellularAutomaton make_it_rain
 	{ url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim" }, -- rainbow delimiters
 	{
 		"lukas-reineke/indent-blankline.nvim",
@@ -238,4 +239,15 @@ return {
 			})
 		end,
 	},
+	-- quickly switch between frequently used files ";"
+	{
+		"jackMort/tide.nvim",
+		opts = {
+			-- optional configuration
+		},
+		dependencies = {
+			"MunifTanjim/nui.nvim",
+			"nvim-tree/nvim-web-devicons",
+		},
+	},
 }