feat: change white theme
This commit is contained in:
parent
3a88d061ef
commit
d09064ec44
11
init.lua
11
init.lua
@ -379,6 +379,17 @@ local servers = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
ts_ls = {
|
||||||
|
init_options = {
|
||||||
|
plugins = {
|
||||||
|
{
|
||||||
|
name = '@vue/typescript-plugin',
|
||||||
|
location = vue_language_server_path,
|
||||||
|
languages = { 'vue' },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
filetypes = { 'typescript', 'javascript', 'javascriptreact', 'typescriptreact', 'vue' },
|
||||||
},
|
},
|
||||||
|
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
|
@ -14,20 +14,16 @@ local fileContent = read_file(string.format("%s/colorscheme", home));
|
|||||||
|
|
||||||
if fileContent == "white" then
|
if fileContent == "white" then
|
||||||
colorscheme = {
|
colorscheme = {
|
||||||
'maxmx03/solarized.nvim',
|
'marko-cerovac/material.nvim',
|
||||||
lazy = false,
|
lazy = false,
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
config = function()
|
config = function()
|
||||||
vim.o.background = 'light'
|
vim.o.background = 'light'
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
require('solarized').setup({
|
vim.g.material_style = 'lighter'
|
||||||
theme = 'neo',
|
require('material').setup({})
|
||||||
styles = {
|
vim.cmd.colorscheme 'material'
|
||||||
functions = { bold = true, italic = false }
|
-- vim.cmd [[highlight ColorColumn ctermbg=235 guibg=#435156]]
|
||||||
},
|
|
||||||
})
|
|
||||||
vim.cmd.colorscheme 'solarized'
|
|
||||||
vim.cmd [[highlight ColorColumn ctermbg=235 guibg=#435156]]
|
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
elseif fileContent == "red" then
|
elseif fileContent == "red" then
|
||||||
|
Loading…
Reference in New Issue
Block a user