Update .chezmoiexternals/btop.toml
Remove .chezmoiexternals/rofi.toml Update .chezmoiexternals/zathura.toml Update .config/drapeau/rose-pine-dawn.toml Update .config/drapeau/rose-pine-moon.toml Update .config/drapeau/rose-pine.toml Update .config/fish/conf.d/30-gtk.fish Update .config/gtk-3.0/settings.ini Update .config/gtk-4.0/settings.ini Update .config/nvim/lua/config/lazy.lua Add .config/nvim/lua/plugins/bufferline.lua Add .config/nvim/lua/plugins/lualine.lua Add .config/nvim/lua/plugins/rose-pine.lua Update .config/packages/archgirlie Update .config/wezterm/wezterm.lua
This commit is contained in:
parent
2d8323d262
commit
7054d7c514
15 changed files with 87 additions and 25 deletions
|
@ -17,3 +17,18 @@ refreshPeriod = "672h"
|
|||
type = "file"
|
||||
url = "https://github.com/catppuccin/btop/blob/main/themes/catppuccin_mocha.theme"
|
||||
refreshPeriod = "672h"
|
||||
|
||||
[".config/btop/themes/rose-pine-dawn.theme"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/rose-pine/btop/main/rose-pine-dawn.theme"
|
||||
refreshPeriod = "672h"
|
||||
|
||||
[".config/btop/themes/rose-pine-moon.theme"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/rose-pine/btop/main/rose-pine-moon.theme"
|
||||
refreshPeriod = "672h"
|
||||
|
||||
[".config/btop/themes/rose-pine.theme"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/rose-pine/btop/main/rose-pine.theme"
|
||||
refreshPeriod = "672h"
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
{{- if eq .osid "linux-arch" -}}
|
||||
[".local/share/rofi/themes/catppuccin-frappe.rasi"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/rofi/main/basic/.local/share/rofi/themes/catppuccin-frappe.rasi"
|
||||
refreshPeriod = "672h"
|
||||
|
||||
[".local/share/rofi/themes/catppuccin-latte.rasi"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/rofi/main/basic/.local/share/rofi/themes/catppuccin-latte.rasi"
|
||||
refreshPeriod = "672h"
|
||||
|
||||
[".local/share/rofi/themes/catppuccin-macchiato.rasi"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/rofi/main/basic/.local/share/rofi/themes/catppuccin-macchiato.rasi"
|
||||
refreshPeriod = "672h"
|
||||
|
||||
[".local/share/rofi/themes/catppuccin-mocha.rasi"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/rofi/main/basic/.local/share/rofi/themes/catppuccin-mocha.rasi"
|
||||
refreshPeriod = "672h"
|
||||
{{- end -}}
|
|
@ -18,4 +18,19 @@ refreshPeriod = "672h"
|
|||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/zathura/main/src/catppuccin-mocha"
|
||||
refreshPeriod = "672h"
|
||||
|
||||
[".config/zathura/rose-pine"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/edunfelt/zathura/main/rose-pine"
|
||||
refreshPeriod = "672h"
|
||||
|
||||
[".config/zathura/rose-pine-dawn"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/edunfelt/zathura/main/rose-pine-dawn"
|
||||
refreshPeriod = "672h"
|
||||
|
||||
[".config/zathura/rose-pine-moon"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/edunfelt/zathura/main/rose-pine-moon"
|
||||
refreshPeriod = "672h"
|
||||
{{- end -}}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
name = "rosepine"
|
||||
name = "rose-pine"
|
||||
flavor = "dawn"
|
||||
|
||||
base00 = "faf4ed" # base
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
name = "rosepine"
|
||||
name = "rose-pine"
|
||||
flavor = "moon"
|
||||
|
||||
base00 = "232136" # base
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
name = "rosepine"
|
||||
name = "rose-pine"
|
||||
flavor = "main"
|
||||
|
||||
base00 = "191724" # base
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
#!/usr/bin/env fish
|
||||
|
||||
{{ if eq .drapeau.colors.name "catppuccin" -}}
|
||||
set -gx GTK_THEME {{ .drapeau.colorscheme | title }}-Standard-Pink-Dark
|
||||
{{ end -}}
|
||||
|
||||
{{ if eq .drapeau.colors.name "rose-pine" -}}
|
||||
set -gx GTK_THEME {{ .drapeau.colorscheme }}-gtk
|
||||
{{ end -}}
|
||||
|
|
|
@ -3,4 +3,10 @@
|
|||
source auto
|
||||
|
||||
ignore "Settings" "gtk-xft-dpi"
|
||||
|
||||
{{ if eq .drapeau.colors.name "catppuccin" -}}
|
||||
set "Settings" "gtk-theme-name" "{{ .drapeau.colorscheme }}-pink-standard+default"
|
||||
{{ end -}}
|
||||
{{ if eq .drapeau.colors.name "rose-pine" -}}
|
||||
set "Settings" "gtk-theme-name" "{{ .drapeau.colorscheme }}-gtk"
|
||||
{{ end -}}
|
||||
|
|
|
@ -3,4 +3,10 @@
|
|||
source auto
|
||||
|
||||
ignore "Settings" "gtk-xft-dpi"
|
||||
|
||||
{{ if eq .drapeau.colors.name "catppuccin" -}}
|
||||
set "Settings" "gtk-theme-name" "{{ .drapeau.colorscheme }}-pink-standard+default"
|
||||
{{ end -}}
|
||||
{{ if eq .drapeau.colors.name "rose-pine" -}}
|
||||
set "Settings" "gtk-theme-name" "{{ .drapeau.colorscheme }}-gtk"
|
||||
{{ end -}}
|
||||
|
|
|
@ -14,6 +14,8 @@ require("lazy").setup({
|
|||
-- import any extras modules here
|
||||
|
||||
-- coding
|
||||
{ import = "lazyvim.plugins.extras.coding.luasnip" },
|
||||
{ import = "lazyvim.plugins.extras.coding.mini-comment" },
|
||||
{ import = "lazyvim.plugins.extras.coding.mini-surround" },
|
||||
{ import = "lazyvim.plugins.extras.coding.yanky" },
|
||||
|
||||
|
@ -69,6 +71,7 @@ require("lazy").setup({
|
|||
{{ end -}}
|
||||
|
||||
-- util
|
||||
{ import = "lazyvim.plugins.extras.util.chezmoi" },
|
||||
{ import = "lazyvim.plugins.extras.util.dot" },
|
||||
{ import = "lazyvim.plugins.extras.util.mini-hipatterns" },
|
||||
{{ if not .isServer -}}
|
||||
|
|
12
dot_config/nvim/lua/plugins/bufferline.lua.tmpl
Normal file
12
dot_config/nvim/lua/plugins/bufferline.lua.tmpl
Normal file
|
@ -0,0 +1,12 @@
|
|||
{{ if eq .drapeau.colors.name "rose-pine" -}}
|
||||
local highlights = require("rose-pine.plugins.bufferline")
|
||||
|
||||
return {
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
opts = {
|
||||
highlights = highlights,
|
||||
},
|
||||
},
|
||||
}
|
||||
{{ end -}}
|
10
dot_config/nvim/lua/plugins/lualine.lua.tmpl
Normal file
10
dot_config/nvim/lua/plugins/lualine.lua.tmpl
Normal file
|
@ -0,0 +1,10 @@
|
|||
{{ if eq .drapeau.colors.name "rose-pine" -}}
|
||||
return {
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
opts = function(_, opts)
|
||||
table.insert(opts.options, { theme = {{ .drapeau.colors.name}} })
|
||||
end
|
||||
},
|
||||
}
|
||||
{{ end -}}
|
8
dot_config/nvim/lua/plugins/rose-pine.lua.tmpl
Normal file
8
dot_config/nvim/lua/plugins/rose-pine.lua.tmpl
Normal file
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
{
|
||||
"rose-pine/neovim",
|
||||
opts = {
|
||||
variant = {{ .drapeau.colors.flavor | quote }},
|
||||
},
|
||||
},
|
||||
}
|
|
@ -1,3 +1,4 @@
|
|||
[1m[33m -> [0m[0mAvoid running yay as root/sudo.
|
||||
aic94xx-firmware
|
||||
alsa-utils
|
||||
arandr
|
||||
|
@ -162,6 +163,7 @@ repoctl
|
|||
ripgrep
|
||||
rofi
|
||||
rofi-calc
|
||||
rose-pine-gtk-theme
|
||||
rsync
|
||||
rust
|
||||
sddm
|
||||
|
|
|
@ -3,7 +3,7 @@ local wezterm = require("wezterm")
|
|||
|
||||
local config = wezterm.config_builder()
|
||||
|
||||
config.color_scheme = {{ .drapeau.colorscheme | replace "-" " " | title | quote }}
|
||||
config.color_scheme = {{ .drapeau.colorscheme | quote }}
|
||||
config.enable_tab_bar = false
|
||||
|
||||
-- config.default_prog = { "/usr/bin/fish" }
|
||||
|
|
Loading…
Reference in a new issue