initial commit
This commit is contained in:
parent
0a76b1a8f8
commit
f555d223d3
40 changed files with 2314 additions and 0 deletions
33
config/nvim/lua/ui/onedark.lua
Normal file
33
config/nvim/lua/ui/onedark.lua
Normal file
|
@ -0,0 +1,33 @@
|
|||
require('onedark').setup {
|
||||
style = 'cool',
|
||||
transparent = false,
|
||||
term_colors = true,
|
||||
ending_tildes = true,
|
||||
cmp_itemkind_reverse = false,
|
||||
|
||||
-- toggle theme style --
|
||||
toggle_style_key = nil,
|
||||
toggle_style_list = {'dark', 'darker', 'cool', 'deep', 'warm', 'warmer', 'light'},
|
||||
|
||||
-- change code style --
|
||||
code_style = {
|
||||
comments = 'italic',
|
||||
keywords = 'italic',
|
||||
functions = 'italic',
|
||||
strings = 'italic',
|
||||
variables = 'italic'
|
||||
},
|
||||
lualine = {
|
||||
transparent = false,
|
||||
},
|
||||
|
||||
colors = {},
|
||||
highlights = {},
|
||||
|
||||
diagnostics = {
|
||||
darker = true,
|
||||
undercurl = true,
|
||||
background = true,
|
||||
},
|
||||
}
|
||||
require('onedark').load()
|
Loading…
Add table
Add a link
Reference in a new issue