From f33edfcf7490d76a8cebe3f079a3c9876edd6877 Mon Sep 17 00:00:00 2001 From: Sean Villars Date: Mon, 22 Apr 2024 16:54:15 -0500 Subject: [PATCH] Enable pyright and add better escape plugin --- init.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 21d7df83..23d0302c 100644 --- a/init.lua +++ b/init.lua @@ -228,6 +228,13 @@ require('lazy').setup({ -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). 'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically + { + 'max397574/better-escape.nvim', + config = function() + require('better_escape').setup() + end, + }, + -- NOTE: Plugins can also be added by using a table, -- with the first argument being the link and the following -- keys can be used to configure plugin behavior/loading/etc. @@ -551,7 +558,7 @@ require('lazy').setup({ local servers = { -- clangd = {}, -- gopls = {}, - -- pyright = {}, + pyright = {}, -- rust_analyzer = {}, -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs --