From 933ddee7d9583e97dc17100b6128fa664f6ee7cf Mon Sep 17 00:00:00 2001
From: Lucian Boaca <lucianboaca97@gmail.com>
Date: Mon, 27 Feb 2023 21:36:59 +0000
Subject: [PATCH 1/2] Update instructions for neo-tree set up (#200)

For me, setting this variable in the config function didn't work. Putting it outside the return block did the trick.
---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 75c24d8..ce72ebb 100644
--- a/README.md
+++ b/README.md
@@ -64,6 +64,9 @@ This will automatically install `nvim-autopairs` and enable it on startup. For m
 In the file: `lua/custom/plugins/filetree.lua`, add:
 
 ```lua
+-- Unless you are still migrating, remove the deprecated commands from v1.x
+vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
+
 return {
   "nvim-neo-tree/neo-tree.nvim",
   version = "*",
@@ -73,9 +76,6 @@ return {
     "MunifTanjim/nui.nvim",
   },
   config = function ()
-    -- Unless you are still migrating, remove the deprecated commands from v1.x
-    vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
-
     require('neo-tree').setup {}
   end,
 }

From 4a37a0a9b1d53fd355637256ac975c619226fb6d Mon Sep 17 00:00:00 2001
From: Philipp Szechenyi <45265588+szechp@users.noreply.github.com>
Date: Mon, 27 Feb 2023 22:37:28 +0100
Subject: [PATCH 2/2] added descriptions to Diagnostic keymaps (#191)

* Update init.lua

* Update init.lua
---
 init.lua | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/init.lua b/init.lua
index aeca6d2..7289032 100644
--- a/init.lua
+++ b/init.lua
@@ -351,10 +351,10 @@ require('nvim-treesitter.configs').setup {
 }
 
 -- Diagnostic keymaps
-vim.keymap.set('n', '[d', vim.diagnostic.goto_prev)
-vim.keymap.set('n', ']d', vim.diagnostic.goto_next)
-vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float)
-vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist)
+vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, { desc = "Go to previous diagnostic message" })
+vim.keymap.set('n', ']d', vim.diagnostic.goto_next, { desc = "Go to next diagnostic message" })
+vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float, { desc = "Open floating diagnostic message" })
+vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = "Open diagnostics list" })
 
 -- LSP settings.
 --  This function gets run when an LSP connects to a particular buffer.