This commit is contained in:
juanito87 2025-07-12 18:27:22 -03:00
parent 1146179971
commit 0677b655ee
No known key found for this signature in database
GPG Key ID: EAB042894FD44AFD
3 changed files with 7 additions and 7 deletions

View File

@ -97,10 +97,6 @@ Autocmd = vim.api.nvim_create_autocmd
Augroup = vim.api.nvim_create_augroup
Fugitive = vim.api.nvim_create_augroup('Fugitive', {})
-- [[ Lazy package manager ]]
require 'lazy-install'
require 'lazy-config'
-- [[ Setting options ]]
require 'options'
@ -109,3 +105,7 @@ require 'keymaps'
-- [[ Autocommands ]]
require 'autocommands'
-- [[ Lazy package manager ]]
require 'lazy-install'
require 'lazy-config'

View File

@ -8,4 +8,4 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then
error('Error cloning lazy.nvim:\n' .. out)
end
end ---@diagnostic disable-next-line: undefined-field
vim.o.rtp:prepend(lazypath)
vim.opt.rtp:prepend(lazypath)

View File

@ -1,4 +1,4 @@
-- [[ oions ]]
-- [[ options ]]
-- See `:help vim.o`
-- NOTE: You can change these oions as you wish!
-- For more oions, you can see `:help option-list`
@ -65,7 +65,7 @@ vim.o.splitbelow = true
-- See `:help 'list'`
-- and `:help 'listchars'`
vim.o.list = true
vim.o.listchars = { tab = '» ', trail = '·', nbsp = '' }
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '' }
-- Show which line your cursor is on
vim.o.cursorline = true