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:
parent
4d7e4b8a1d
commit
2dc76c90e2
3
init.lua
3
init.lua
|
@ -72,6 +72,9 @@ require('lazy').setup({
|
||||||
-- Detect tabstop and shiftwidth automatically
|
-- Detect tabstop and shiftwidth automatically
|
||||||
'tpope/vim-sleuth',
|
'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.
|
-- NOTE: This is where your plugins related to LSP can be installed.
|
||||||
-- The configuration is done below. Search for lspconfig to find it below.
|
-- The configuration is done below. Search for lspconfig to find it below.
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue