mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-04 18:14:40 +02:00
moved the including of lv-settings to above the settings so local settings configured in lv-settings can override the globals that get loaded in settings, 0.relative_number for example (#396)
This commit is contained in:
parent
22ffb0eb03
commit
946dc0c1dd
2 changed files with 6 additions and 3 deletions
4
init.lua
4
init.lua
|
@ -1,12 +1,12 @@
|
|||
require('lv-globals')
|
||||
vim.cmd('luafile ~/.config/nvim/lv-settings.lua')
|
||||
require('settings')
|
||||
require('plugins')
|
||||
require('lv-utils')
|
||||
require('lv-autocommands')
|
||||
vim.cmd('luafile ~/.config/nvim/lv-settings.lua')
|
||||
require('keymappings')
|
||||
require('lv-nvimtree') -- This plugin must be required somewhere before colorscheme. Placing it after will break navigation keymappings
|
||||
require('colorscheme') -- This plugin must be required somewhere after nvimtree. Placing it before will break navigation keymappings
|
||||
require('colorscheme') -- This plugin must be required somewhere after nvimtree. Placing it before will break navigation keymappings
|
||||
require('lv-galaxyline')
|
||||
require('lv-comment')
|
||||
require('lv-compe')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue