From 2dc76c90e216b19f9895f271b2e121fb7e8148b7 Mon Sep 17 00:00:00 2001 From: jsphwllng <63716060+jsphwllng@users.noreply.github.com> Date: Sun, 21 May 2023 11:27:20 +0200 Subject: [PATCH] Update init.lua Adding a small autocomplete plugin to the plugin list. The functionality is described succinctly [here](https://github.com/cohama/lexima.vim#basic-rules). This input rule is a common feature in modern IDEs and I think it would make the transition from other editors to NVIM more smooth. --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index c77ff26c..608105ef 100644 --- a/init.lua +++ b/init.lua @@ -71,6 +71,9 @@ require('lazy').setup({ -- Detect tabstop and shiftwidth automatically 'tpope/vim-sleuth', + + -- Automatically append closing quotes and brackets when typing + 'cohama/lexima.vim' -- NOTE: This is where your plugins related to LSP can be installed. -- The configuration is done below. Search for lspconfig to find it below.