|
|
@ -88,7 +88,7 @@ P.S. You can delete this when you're done too. It's your config now! :)
|
|
|
|
-- See `:help mapleader`
|
|
|
|
-- See `:help mapleader`
|
|
|
|
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
|
|
|
|
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
|
|
|
|
vim.g.mapleader = ' '
|
|
|
|
vim.g.mapleader = ' '
|
|
|
|
vim.g.maplocalleader = ' '
|
|
|
|
vim.g.maplocalleader = '\\'
|
|
|
|
|
|
|
|
|
|
|
|
-- Set to true if you have a Nerd Font installed and selected in the terminal
|
|
|
|
-- 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
|
|
|
@ -676,6 +676,9 @@ require('lazy').setup({
|
|
|
|
-- ts_ls = {},
|
|
|
|
-- ts_ls = {},
|
|
|
|
--
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--Este es el primer LSP que instalé. Tuve que descargar texlab primero y agregarlo al Path y después venir acá y activarlo
|
|
|
|
|
|
|
|
texlab = {},
|
|
|
|
|
|
|
|
|
|
|
|
lua_ls = {
|
|
|
|
lua_ls = {
|
|
|
|
-- cmd = { ... },
|
|
|
|
-- cmd = { ... },
|
|
|
|
-- filetypes = { ... },
|
|
|
|
-- filetypes = { ... },
|
|
|
@ -944,7 +947,9 @@ require('lazy').setup({
|
|
|
|
-- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules.
|
|
|
|
-- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules.
|
|
|
|
-- If you are experiencing weird indenting issues, add the language to
|
|
|
|
-- If you are experiencing weird indenting issues, add the language to
|
|
|
|
-- the list of additional_vim_regex_highlighting and disabled languages for indent.
|
|
|
|
-- the list of additional_vim_regex_highlighting and disabled languages for indent.
|
|
|
|
additional_vim_regex_highlighting = { 'ruby' },
|
|
|
|
-- Acá estoy deshabilitando el treesitter para latex ya que vimtex lo hace mejor.
|
|
|
|
|
|
|
|
disable = { 'latex' },
|
|
|
|
|
|
|
|
additional_vim_regex_highlighting = { 'ruby', 'latex' },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
indent = { enable = true, disable = { 'ruby' } },
|
|
|
|
indent = { enable = true, disable = { 'ruby' } },
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -966,12 +971,15 @@ require('lazy').setup({
|
|
|
|
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
|
|
|
|
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
|
|
|
|
--
|
|
|
|
--
|
|
|
|
-- require 'kickstart.plugins.debug',
|
|
|
|
-- require 'kickstart.plugins.debug',
|
|
|
|
-- require 'kickstart.plugins.indent_line',
|
|
|
|
require 'kickstart.plugins.indent_line',
|
|
|
|
-- require 'kickstart.plugins.lint',
|
|
|
|
-- require 'kickstart.plugins.lint',
|
|
|
|
-- require 'kickstart.plugins.autopairs',
|
|
|
|
-- require 'kickstart.plugins.autopairs',
|
|
|
|
-- require 'kickstart.plugins.neo-tree',
|
|
|
|
-- require 'kickstart.plugins.neo-tree',
|
|
|
|
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
|
|
|
|
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Esta linea la estoy agregando yo para poder usar el plugin vimtex
|
|
|
|
|
|
|
|
require 'kickstart.plugins.vimtex',
|
|
|
|
|
|
|
|
|
|
|
|
-- 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.
|
|
|
|
--
|
|
|
|
--
|
|
|
|