colorscheme things
This commit is contained in:
parent
7acbe5078b
commit
a757636e38
|
@ -25,7 +25,7 @@ local defaults = {
|
|||
-- String like `habamax` or a function that will load the colorscheme.
|
||||
-- Disabled by default to allow theme-loader.nvim to manage the colorscheme.
|
||||
---@type string|fun()
|
||||
colorscheme = '',
|
||||
colorscheme = 'kanagawa',
|
||||
|
||||
features = {
|
||||
elite_mode = true,
|
||||
|
|
|
@ -1,15 +1,4 @@
|
|||
-- Plugins: Colorschemes
|
||||
-- https://github.com/rafi/vim-config
|
||||
|
||||
return {
|
||||
|
||||
{
|
||||
'rafi/theme-loader.nvim',
|
||||
lazy = false,
|
||||
priority = 99,
|
||||
opts = { initial_colorscheme = 'kanagawa' },
|
||||
},
|
||||
|
||||
{ 'rafi/neo-hybrid.vim', priority = 100, lazy = false },
|
||||
{ 'rafi/awesome-vim-colorschemes', lazy = false },
|
||||
{ 'AlexvZyl/nordic.nvim' },
|
||||
|
@ -24,7 +13,7 @@ return {
|
|||
lazy = true,
|
||||
name = 'catppuccin',
|
||||
opts = {
|
||||
flavour = 'mocha', -- latte, frappe, macchiato, mocha
|
||||
flavour = 'latte', -- latte, frappe, macchiato, mocha
|
||||
dim_inactive = { enabled = false },
|
||||
integrations = {
|
||||
alpha = true,
|
||||
|
@ -72,15 +61,15 @@ return {
|
|||
},
|
||||
{
|
||||
'rebelot/kanagawa.nvim',
|
||||
lazy = true,
|
||||
lazy = false,
|
||||
name = 'kanagawa',
|
||||
config = function()
|
||||
require('kanagawa').setup({
|
||||
compile = false, -- enable compiling the colorscheme
|
||||
compile = true, -- enable compiling the colorscheme
|
||||
undercurl = true, -- enable undercurls
|
||||
commentStyle = { italic = true },
|
||||
commentStyle = { italic = false },
|
||||
functionStyle = {},
|
||||
keywordStyle = { italic = true},
|
||||
keywordStyle = { bold = true },
|
||||
statementStyle = { bold = true },
|
||||
typeStyle = {},
|
||||
transparent = false, -- do not set background color
|
||||
|
@ -93,13 +82,12 @@ return {
|
|||
overrides = function(colors) -- add/modify highlights
|
||||
return {}
|
||||
end,
|
||||
theme = "wave", -- Load "wave" theme when 'background' option is not set
|
||||
theme = "dragon", -- Load "wave" theme when 'background' option is not set
|
||||
background = { -- map the value of 'background' option to a theme
|
||||
dark = "wave", -- try "dragon" !
|
||||
dark = "wave", -- try "dragon" !
|
||||
light = "lotus"
|
||||
},
|
||||
})
|
||||
|
||||
end
|
||||
},
|
||||
}
|
||||
|
|
|
@ -146,3 +146,10 @@ TODO
|
|||
vvvv
|
||||
Structs
|
||||
nomicon
|
||||
Wrapperklasse
|
||||
tx
|
||||
rx
|
||||
struct
|
||||
enum
|
||||
priorisierbar
|
||||
仕方がない
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue