From 8eff8ff770d1e01fad90ba5c6964b2a7e88a824c Mon Sep 17 00:00:00 2001 From: dlsaldanas Date: Sun, 22 Mar 2026 14:53:51 -0300 Subject: [PATCH] latest --- init.lua | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/init.lua b/init.lua index 33008615..339de8a2 100644 --- a/init.lua +++ b/init.lua @@ -10,7 +10,7 @@ vim.g.lazy_rocks = { hererocks = { lua_dir = '/usr/local/bin', lua_version = '5.1', - } + }, } -- [[ Setting options ]] @@ -164,15 +164,7 @@ local rtp = vim.opt.rtp rtp:prepend(lazypath) -- [[ Configure and install plugins ]] --- --- To check the current status of your plugins, run --- :Lazy --- --- You can press `?` in this menu for help. Use `:q` to close the window --- --- To update plugins you can run --- :Lazy update --- + -- NOTE: Here is where you install your plugins. require('lazy').setup({ -- NOTE: Plugins can be added via a link or github org/name. To run setup automatically, use `opts = {}` @@ -254,7 +246,7 @@ require('lazy').setup({ { -- Fuzzy Finder (files, lsp, etc) 'nvim-telescope/telescope.nvim', -- By default, Telescope is included and acts as your picker for everything. --- Configure LSP (Language Server Protocol) + -- Configure LSP (Language Server Protocol) -- If you would like to switch to a different picker (like snacks, or fzf-lua) -- you can disable the Telescope plugin by setting enabled to false and enable @@ -525,12 +517,12 @@ require('lazy').setup({ -- gopls = {}, -- pyright = {}, -- rust_analyzer = {}, - -- + cssls = {}, -- Some languages (like typescript) have entire language plugins that can be useful: -- https://github.com/pmizio/typescript-tools.nvim -- -- But for many setups, the LSP (`ts_ls`) will work just fine - -- ts_ls = {}, + ts_ls = {}, stylua = {}, -- Used to format Lua code @@ -831,7 +823,7 @@ require('lazy').setup({ -- Uncomment any of the lines below to enable them (you will need to restart nvim). -- -- require 'kickstart.plugins.debug', - -- require 'kickstart.plugins.indent_line', + require 'kickstart.plugins.indent_line', -- require 'kickstart.plugins.lint', -- require 'kickstart.plugins.autopairs', -- require 'kickstart.plugins.neo-tree', @@ -841,7 +833,7 @@ require('lazy').setup({ -- This is the easiest way to modularize your config. -- -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. - -- { import = 'custom.plugins' }, + { import = 'custom.plugins' }, -- -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec` -- Or use telescope!