@ -0,0 +1,38 @@ | |||||
# Colors (Kanagawa Dragon) | |||||
# Source https//github.com/rebelot/kanagawa.nvim | |||||
[colors.primary] | |||||
background = '#181616' | |||||
foreground = '#c5c9c5' | |||||
[colors.normal] | |||||
black = '#0d0c0c' | |||||
blue = '#8ba4b0' | |||||
cyan = '#8ea4a2' | |||||
green = '#8a9a7b' | |||||
magenta = '#a292a3' | |||||
red = '#c4746e' | |||||
white = '#C8C093' | |||||
yellow = '#c4b28a' | |||||
[colors.bright] | |||||
black = '#a6a69c' | |||||
blue = '#7FB4CA' | |||||
cyan = '#7AA89F' | |||||
green = '#87a987' | |||||
magenta = '#938AA9' | |||||
red = '#E46876' | |||||
white = '#c5c9c5' | |||||
yellow = '#E6C384' | |||||
[colors.selection] | |||||
background = '#2d4f67' | |||||
foreground = '#c8c093' | |||||
[[colors.indexed_colors]] | |||||
index = 16 | |||||
color = '#ffa066' | |||||
[[colors.indexed_colors]] | |||||
index = 17 | |||||
color = '#ff5d62' |
@ -0,0 +1,38 @@ | |||||
# Colors (Kanagawa Wave) | |||||
# Source https//github.com/rebelot/kanagawa.nvim | |||||
[colors.primary] | |||||
background = '#1f1f28' | |||||
foreground = '#dcd7ba' | |||||
[colors.normal] | |||||
black = '#090618' | |||||
red = '#c34043' | |||||
green = '#76946a' | |||||
yellow = '#c0a36e' | |||||
blue = '#7e9cd8' | |||||
magenta = '#957fb8' | |||||
cyan = '#6a9589' | |||||
white = '#c8c093' | |||||
[colors.bright] | |||||
black = '#727169' | |||||
red = '#e82424' | |||||
green = '#98bb6c' | |||||
yellow = '#e6c384' | |||||
blue = '#7fb4ca' | |||||
magenta = '#938aa9' | |||||
cyan = '#7aa89f' | |||||
white = '#dcd7ba' | |||||
[colors.selection] | |||||
background = '#2d4f67' | |||||
foreground = '#c8c093' | |||||
[[colors.indexed_colors]] | |||||
index = 16 | |||||
color = '#ffa066' | |||||
[[colors.indexed_colors]] | |||||
index = 17 | |||||
color = '#ff5d62' |
@ -1,65 +1,102 @@ | |||||
-- return { | |||||
-- "catppuccin/nvim", | |||||
-- name = "catppuccin", | |||||
-- priority = 1000, | |||||
-- config = function () | |||||
-- require("catppuccin").setup({ | |||||
-- flavour = "mocha", -- latte, frappe, macchiato, mocha | |||||
-- background = { -- :h background | |||||
-- light = "latte", | |||||
-- dark = "mocha", | |||||
-- }, | |||||
-- transparent_background = false, -- disables setting the background color. | |||||
-- show_end_of_buffer = false, -- shows the '~' characters after the end of buffers | |||||
-- term_colors = false, -- sets terminal colors (e.g. `g:terminal_color_0`) | |||||
-- dim_inactive = { | |||||
-- enabled = false, -- dims the background color of inactive window | |||||
-- shade = "dark", | |||||
-- percentage = 0.15, -- percentage of the shade to apply to the inactive window | |||||
-- }, | |||||
-- no_italic = false, -- Force no italic | |||||
-- no_bold = false, -- Force no bold | |||||
-- no_underline = false, -- Force no underline | |||||
-- styles = { -- Handles the styles of general hi groups (see `:h highlight-args`): | |||||
-- comments = { "italic" }, -- Change the style of comments | |||||
-- conditionals = { "italic" }, | |||||
-- loops = {}, | |||||
-- functions = {}, | |||||
-- keywords = {}, | |||||
-- strings = {}, | |||||
-- variables = {}, | |||||
-- numbers = {}, | |||||
-- booleans = {}, | |||||
-- properties = {}, | |||||
-- types = {}, | |||||
-- operators = {}, | |||||
-- -- miscs = {}, -- Uncomment to turn off hard-coded styles | |||||
-- }, | |||||
-- color_overrides = {}, | |||||
-- custom_highlights = {}, | |||||
-- default_integrations = true, | |||||
-- integrations = { | |||||
-- cmp = true, | |||||
-- gitsigns = true, | |||||
-- nvimtree = true, | |||||
-- treesitter = true, | |||||
-- notify = false, | |||||
-- mini = { | |||||
-- enabled = true, | |||||
-- indentscope_color = "", | |||||
-- }, | |||||
-- }, | |||||
-- }) | |||||
-- | |||||
-- vim.cmd("colorscheme catppuccin") | |||||
-- end | |||||
-- } | |||||
return { | return { | ||||
"ellisonleao/gruvbox.nvim", | |||||
priority = 1000 , | |||||
config = function () | |||||
require("gruvbox").setup() | |||||
vim.cmd("colorscheme gruvbox") | |||||
end, | |||||
{ | |||||
"catppuccin/nvim", | |||||
enabled = false, | |||||
name = "catppuccin", | |||||
priority = 1000, | |||||
config = function () | |||||
require("catppuccin").setup({ | |||||
flavour = "mocha", -- latte, frappe, macchiato, mocha | |||||
background = { -- :h background | |||||
light = "latte", | |||||
dark = "mocha", | |||||
}, | |||||
transparent_background = false, -- disables setting the background color. | |||||
show_end_of_buffer = false, -- shows the '~' characters after the end of buffers | |||||
term_colors = false, -- sets terminal colors (e.g. `g:terminal_color_0`) | |||||
dim_inactive = { | |||||
enabled = false, -- dims the background color of inactive window | |||||
shade = "dark", | |||||
percentage = 0.15, -- percentage of the shade to apply to the inactive window | |||||
}, | |||||
no_italic = false, -- Force no italic | |||||
no_bold = false, -- Force no bold | |||||
no_underline = false, -- Force no underline | |||||
styles = { -- Handles the styles of general hi groups (see `:h highlight-args`): | |||||
comments = { "italic" }, -- Change the style of comments | |||||
conditionals = { "italic" }, | |||||
loops = {}, | |||||
functions = {}, | |||||
keywords = {}, | |||||
strings = {}, | |||||
variables = {}, | |||||
numbers = {}, | |||||
booleans = {}, | |||||
properties = {}, | |||||
types = {}, | |||||
operators = {}, | |||||
-- miscs = {}, -- Uncomment to turn off hard-coded styles | |||||
}, | |||||
color_overrides = {}, | |||||
custom_highlights = {}, | |||||
default_integrations = true, | |||||
integrations = { | |||||
cmp = true, | |||||
gitsigns = true, | |||||
nvimtree = true, | |||||
treesitter = true, | |||||
notify = false, | |||||
mini = { | |||||
enabled = true, | |||||
indentscope_color = "", | |||||
}, | |||||
}, | |||||
}) | |||||
-- vim.cmd("colorscheme catppuccin") | |||||
end | |||||
}, | |||||
{ | |||||
"ellisonleao/gruvbox.nvim", | |||||
enabled = false, | |||||
priority = 1000 , | |||||
config = function () | |||||
require("gruvbox").setup() | |||||
vim.cmd("colorscheme gruvbox") | |||||
end, | |||||
}, | |||||
{ | |||||
"rebelot/kanagawa.nvim", | |||||
priority = 1000 , | |||||
config = function () | |||||
-- Default options: | |||||
require('kanagawa').setup({ | |||||
compile = false, -- enable compiling the colorscheme | |||||
undercurl = true, -- enable undercurls | |||||
commentStyle = { italic = true }, | |||||
functionStyle = {}, | |||||
keywordStyle = { italic = true}, | |||||
statementStyle = { bold = true }, | |||||
typeStyle = {}, | |||||
transparent = false, -- do not set background color | |||||
dimInactive = false, -- dim inactive window `:h hl-NormalNC` | |||||
terminalColors = true, -- define vim.g.terminal_color_{0,17} | |||||
colors = { -- add/modify theme and palette colors | |||||
palette = {}, | |||||
theme = { wave = {}, lotus = {}, dragon = {}, all = {} }, | |||||
}, | |||||
overrides = function(colors) -- add/modify highlights | |||||
return {} | |||||
end, | |||||
theme = "wave", -- Load "wave" theme when 'background' option is not set | |||||
background = { -- map the value of 'background' option to a theme | |||||
dark = "wave", -- try "dragon" ! | |||||
light = "lotus" | |||||
}, | |||||
}) | |||||
-- setup must be called before loading | |||||
vim.cmd("colorscheme kanagawa") | |||||
end | |||||
}, | |||||
} | } |
@ -1,11 +0,0 @@ | |||||
return { | |||||
"mrquantumcodes/retrospect.nvim", | |||||
config = function () | |||||
local retrospect = require('retrospect') | |||||
retrospect.setup({ | |||||
saveKey = "<leader>\\", | |||||
loadKey = "<leader><BS>", | |||||
style = "default", | |||||
}) | |||||
end | |||||
} |
@ -0,0 +1,3 @@ | |||||
return { | |||||
'jwalton512/vim-blade' | |||||
} |