chore: update config
This commit is contained in:
parent
584ba6e536
commit
cb2ff3574e
13 changed files with 270 additions and 204 deletions
27
lua/custom/plugins/theme.lua
Normal file
27
lua/custom/plugins/theme.lua
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
return {
|
||||
-- Theme inspired by Atom
|
||||
'navarasu/onedark.nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'onedark'
|
||||
local onedark = require('onedark')
|
||||
onedark.setup {
|
||||
colors = {
|
||||
bright_orange = "#ff8800", -- define a new color
|
||||
green = '#00ffaa', -- redefine an existing color
|
||||
},
|
||||
highlights = {
|
||||
["@string"] = { fmt = 'bold,italic', fg = '$orange' },
|
||||
["@function"] = { sp = '$yellow' },
|
||||
["@function.builtin"] = { fg = '#0059ff' },
|
||||
["@parameter"] = { fg = '$cyan' },
|
||||
["@variable.builtin"] = { fg = '$cyan' },
|
||||
["@type.builtin"] = { fg = '#00ffff' },
|
||||
["@lsp.type.parameter"] = { fg = "$cyan" },
|
||||
["@lsp.typemod.function.defaultLibrary"] = { fg = "$yellow" }
|
||||
}
|
||||
}
|
||||
|
||||
onedark.load()
|
||||
end,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue