Quick theme kintsugi.
This commit is contained in:
@@ -16,37 +16,34 @@ style.shape = "Beam"
|
|||||||
style.blinking = "Always"
|
style.blinking = "Always"
|
||||||
|
|
||||||
# THEME
|
# THEME
|
||||||
|
|
||||||
[colors.primary]
|
[colors.primary]
|
||||||
background = "#1b1b1b"
|
background = "#1b1b1b"
|
||||||
foreground = "#E4E4E4"
|
foreground = "#E4E4E4"
|
||||||
# background = "#141415"
|
|
||||||
# foreground = "#cdcdcd"
|
|
||||||
|
|
||||||
[colors.cursor]
|
[colors.cursor]
|
||||||
text = "#141415"
|
text = "#141415"
|
||||||
cursor = "#cdcdcd"
|
cursor = "#cdcdcd"
|
||||||
|
|
||||||
[colors.selection]
|
[colors.selection]
|
||||||
text = "#cdcdcd"
|
text = "#cdcdcd"
|
||||||
background = "#333738"
|
background = "#333738"
|
||||||
|
|
||||||
[colors.normal]
|
[colors.normal]
|
||||||
black = "#141415"
|
black = "#333333" # punctuation / muted bg tone
|
||||||
red = "#d8647e"
|
red = "#b38f8f" # invalid
|
||||||
green = "#7fa563"
|
green = "#98c379" # string
|
||||||
yellow = "#f3be7c"
|
yellow = "#DBAD49" # keyword / storage / self
|
||||||
blue = "#6e94b2"
|
blue = "#819aff" # number
|
||||||
magenta = "#bb9dbd"
|
magenta = "#939799" # type / constant
|
||||||
cyan = "#b4d4cf"
|
cyan = "#678E87" # annotation
|
||||||
white = "#cdcdcd"
|
white = "#dddddd" # default / operator / func
|
||||||
|
|
||||||
[colors.bright]
|
[colors.bright]
|
||||||
black = "#606079"
|
black = "#af9661" # comment
|
||||||
red = "#d8647e"
|
red = "#b38f8f" # invalid (same, no bright variant)
|
||||||
green = "#7fa563"
|
green = "#98c379" # string (same)
|
||||||
yellow = "#e0a363"
|
yellow = "#DBAD49" # keyword bright
|
||||||
blue = "#7e98e8"
|
blue = "#8fa3b3" # link
|
||||||
magenta = "#aeaed1"
|
magenta = "#868165" # punctuation
|
||||||
cyan = "#9bb4bc"
|
cyan = "#678E87" # annotation (same)
|
||||||
white = "#c3c3d5"
|
white = "#dddddd" # default bright
|
||||||
|
|||||||
@@ -3,10 +3,10 @@ vim.pack.add({
|
|||||||
{ src = "https://github.com/neovim/nvim-lspconfig" },
|
{ src = "https://github.com/neovim/nvim-lspconfig" },
|
||||||
{ src = "https://github.com/romus204/tree-sitter-manager.nvim" },
|
{ src = "https://github.com/romus204/tree-sitter-manager.nvim" },
|
||||||
{ src = "https://github.com/brenoprata10/nvim-highlight-colors" },
|
{ src = "https://github.com/brenoprata10/nvim-highlight-colors" },
|
||||||
{ src = 'https://github.com/vague-theme/vague.nvim' }
|
{ src = 'https://github.com/metalelf0/kintsugi-nvim' },
|
||||||
|
{ src = 'https://github.com/xiyaowong/transparent.nvim' }
|
||||||
})
|
})
|
||||||
|
|
||||||
require('vague').setup({ transparent = true })
|
|
||||||
require("tree-sitter-manager").setup()
|
require("tree-sitter-manager").setup()
|
||||||
require('nvim-highlight-colors').setup()
|
require('nvim-highlight-colors').setup()
|
||||||
-- Mini setups
|
-- Mini setups
|
||||||
@@ -32,7 +32,7 @@ require("mini.pick").setup({
|
|||||||
})
|
})
|
||||||
|
|
||||||
vim.cmd(":HighlightColors Off")
|
vim.cmd(":HighlightColors Off")
|
||||||
vim.cmd(":colorscheme vague")
|
vim.cmd(":colorscheme kintsugi-dark")
|
||||||
|
|
||||||
-- Lsp specific, uses nvim-lspconfigs with the below
|
-- Lsp specific, uses nvim-lspconfigs with the below
|
||||||
vim.lsp.enable({ "gopls", "ols" })
|
vim.lsp.enable({ "gopls", "ols" })
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ bind e run-shell 'tmux popup -d "#{pane_current_path}" -xC -yC -w90% -h90% -E "~
|
|||||||
## Status bar design
|
## Status bar design
|
||||||
set -g status-justify left
|
set -g status-justify left
|
||||||
set -g status-position top
|
set -g status-position top
|
||||||
set -g status-bg '#16161D'
|
set -g status-bg '#181818'
|
||||||
set -g status-fg '#DCD7BA'
|
set -g status-fg '#DCD7BA'
|
||||||
set -g status-left-length 20
|
set -g status-left-length 20
|
||||||
set -g status-right ' #[fg=colour232,bg="#af875f",bold]#{?client_prefix, [PFX] ,} #[fg="#1c1c1c",bg="#767676",bold][#S] '
|
set -g status-right ' #[fg=colour232,bg="#af875f",bold]#{?client_prefix, [PFX] ,} #[fg="#1c1c1c",bg="#767676",bold][#S] '
|
||||||
|
|||||||
Reference in New Issue
Block a user