50 lines
1.9 KiB
Lua
50 lines
1.9 KiB
Lua
--[[
|
|
Copyright 2023 Oscar Wallberg
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
]]
|
|
|
|
require('onedark').setup {
|
|
-- Main options --
|
|
style = 'darker', -- Default theme style. Choose between 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer' and 'light'
|
|
transparent = false, -- Show/hide background
|
|
term_colors = true, -- Change terminal color as per the selected theme style
|
|
ending_tildes = true, -- Show the end-of-buffer tildes. By default they are hidden
|
|
-- toggle theme style ---
|
|
toggle_style_key = '<leader>ts', -- Default keybinding to toggle
|
|
toggle_style_list = {'dark', 'darker', 'cool', 'deep', 'warm', 'warmer', 'light'}, -- List of styles to toggle between
|
|
|
|
-- Change code style ---
|
|
-- Options are italic, bold, underline, none
|
|
-- You can configure multiple style with comma seperated, For e.g., keywords = 'italic,bold'
|
|
code_style = {
|
|
comments = 'italic',
|
|
keywords = 'none',
|
|
functions = 'none',
|
|
strings = 'none',
|
|
variables = 'none'
|
|
},
|
|
|
|
-- Custom Highlights --
|
|
colors = {}, -- Override default colors
|
|
highlights = {}, -- Override highlight groups
|
|
|
|
-- Plugins Config --
|
|
diagnostics = {
|
|
darker = true, -- darker colors for diagnostic
|
|
undercurl = true, -- use undercurl instead of underline for diagnostics
|
|
background = true, -- use background color for virtual text
|
|
},
|
|
}
|
|
require('onedark').load()
|