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.
This commit is contained in:
jsphwllng 2023-05-21 11:27:20 +02:00 committed by GitHub
parent 4d7e4b8a1d
commit 2dc76c90e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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.