diff --git a/CHANGELOG.md b/CHANGELOG.md index 48bf7d0..0c4352a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,7 +32,6 @@ Instead of grouping changes by tag, they are grouped by the date they are releas ### Added * Add `prettier` as a formatter within Neovim. -* Automatically close brackets, parentheses and quotes. ## 17th December 2023 diff --git a/config/neovim/lua/opdavies/init.lua b/config/neovim/lua/opdavies/init.lua index dd2b182..1fcdda4 100644 --- a/config/neovim/lua/opdavies/init.lua +++ b/config/neovim/lua/opdavies/init.lua @@ -8,3 +8,7 @@ require "opdavies.lsp" require "opdavies.telescope.setup" require "opdavies.telescope.mappings" + +vim.api.nvim_create_user_command("GoToFile", function() + require("opdavies.telescope").git_files() +end, {})