Fixes
This commit is contained in:
parent
1146179971
commit
0677b655ee
8
init.lua
8
init.lua
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue