Updating config file

This commit is contained in:
juanito87 2024-04-23 20:39:50 -03:00
parent c3174bf31d
commit 5d6f9025fb
No known key found for this signature in database
GPG Key ID: EAB042894FD44AFD
1 changed files with 2 additions and 13 deletions

View File

@ -31,9 +31,10 @@ require('lazy').setup({
require 'plugins_config/colortheme', -- Color theme for the editor require 'plugins_config/colortheme', -- Color theme for the editor
require 'plugins_config/mini', -- Collections of useful mini plugins, like around/surround require 'plugins_config/mini', -- Collections of useful mini plugins, like around/surround
require 'plugins_config/tree-sitter', -- manage lint, indentation and some othe language related tasks require 'plugins_config/tree-sitter', -- manage lint, indentation and some othe language related tasks
require 'plugins_config/harpoon', -- Improve workflow for multiple files
-- Broken configs/Testing config -- Broken configs/Testing config
require 'plugins_config/harpoon', -- Improve workflow for multiple files
-- keeping comments for annotation -- keeping comments for annotation
-- NOTE: Plugins can also be added by using a table, -- NOTE: Plugins can also be added by using a table,
-- with the first argument being the link and the following -- with the first argument being the link and the following
@ -79,18 +80,6 @@ require('lazy').setup({
-- init.lua. If you want these files, they are in the repository, so you can just download them and -- init.lua. If you want these files, they are in the repository, so you can just download them and
-- place them in the correct locations. -- place them in the correct locations.
-- NOTE: Next step on your Neovim journey: Add/Configure additional plugins for Kickstart
--
-- Here are some example plugins that I've included in the Kickstart repository.
-- 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.lint',
-- require 'kickstart.plugins.autopairs',
-- require 'kickstart.plugins.neo-tree',
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua` -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- This is the easiest way to modularize your config. -- This is the easiest way to modularize your config.
-- --