From d5b2d76dfbbd0c16d008e211ad8f16acc25fb199 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 7 Jan 2024 21:56:59 +0000 Subject: [PATCH] Revert "Automatically close brackets, parentheses and" This reverts commit 799ca92f401b6b11bebbb7bd514214b9156e2504. --- CHANGELOG.md | 1 - config/neovim/lua/opdavies/init.lua | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) 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, {})