From d3c45857ebf66511e02aff9278c0d052ae5eb66b Mon Sep 17 00:00:00 2001 From: andrzej Date: Wed, 13 Mar 2024 00:25:39 +0100 Subject: [PATCH] require lsp setup --- init.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 2d2b1d0..a639008 100644 --- a/init.lua +++ b/init.lua @@ -9,11 +9,10 @@ if not vim.loop.fs_stat(lazypath) then "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release - lazypath, - }) + lazypath, }) end vim.opt.rtp:prepend(lazypath) require("lazy").setup({ { import = "plugins" }, { import = "plugins.lsp" }, { import = "plugins.themes" } }) - +require("lsp_setup") vim.cmd("colorscheme rose-pine")