mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-04 18:14:40 +02:00
Colorscheme needs to be set after plugins have been installed (#556)
This commit is contained in:
parent
96ffccc3e3
commit
0cecc1669d
3 changed files with 3 additions and 2 deletions
1
init.lua
1
init.lua
|
@ -2,6 +2,7 @@ require('default-config')
|
|||
vim.cmd('luafile ' .. CONFIG_PATH .. '/lv-config.lua')
|
||||
require('settings')
|
||||
require('plugins')
|
||||
require('colorscheme')
|
||||
require('lv-utils')
|
||||
require('lv-autocommands')
|
||||
require('keymappings')
|
||||
|
|
2
lua/colorscheme.lua
Normal file
2
lua/colorscheme.lua
Normal file
|
@ -0,0 +1,2 @@
|
|||
-- TODO is there a lua native way to do this?
|
||||
vim.cmd('colorscheme ' .. O.colorscheme)
|
|
@ -9,8 +9,6 @@ an executable
|
|||
-- general
|
||||
O.auto_complete = true
|
||||
O.colorscheme = 'lunar'
|
||||
-- TODO is there a lua native way to do this?
|
||||
vim.cmd('colorscheme ' .. O.colorscheme)
|
||||
O.auto_close_tree = 0
|
||||
O.wrap_lines = false
|
||||
O.timeoutlen = 100
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue