diff --git a/init.lua b/init.lua index 1427b6c7..b478a055 100644 --- a/init.lua +++ b/init.lua @@ -91,7 +91,7 @@ vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' -- Set to true if you have a Nerd Font installed and selected in the terminal -vim.g.have_nerd_font = false +vim.g.have_nerd_font = False -- [[ Setting options ]] -- See `:help vim.opt` @@ -656,6 +656,9 @@ require('lazy').setup({ -- Enable the following language servers -- Feel free to add/remove any LSPs that you want here. They will automatically be installed. -- + + --myown require'lspconfig'.pylsp.setup{} + -- Add any additional override configuration in the following tables. Available keys are: -- - cmd (table): Override the default command used to start the server -- - filetypes (table): Override the default list of associated filetypes for the server @@ -1027,3 +1030,5 @@ require('lazy').setup({ -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et + +vim.o.shiftwidth = 4 -- Number of spaces inserted when indenting; custom \ No newline at end of file