Added Foot config, some C++ configs and changed Helix to light theme

This commit is contained in:
Gu://em_ 2026-03-11 09:39:35 +01:00
parent 72f0064f15
commit 4c99ea1a4d
6 changed files with 82 additions and 1 deletions

8
.config/foot/foot.ini Normal file
View file

@ -0,0 +1,8 @@
[main]
shell=zsh
font=JetBrains Mono Nerd Font:size=14:style=Light
include=~/.config/foot/github-dark.ini
[cursor]
style=beam
blink=true

View file

@ -0,0 +1,41 @@
# -*- conf -*-
# Github Dark
# By Gu://em_
[colors-dark]
# alpha = 0.9
background= 0d1117
foreground= c9d1d9
#: black
regular0= 484f58
bright0= 6e7681
#: red
regular1= ff7b72
bright1= ffa198
#: green
regular2= 3fb950
bright2= 56d364
#: yellow
regular3= d29922
bright3= e3b341
#: blue
regular4= 58a6ff
bright4= 79c0ff
#: magenta
regular5= bc8cff
bright5= d2a8ff
#: cyan
regular6= 39c5cf
bright6= 56d4dd
#: white
regular7= b1bac4
bright7= ffffff

25
.config/foot/onedark.ini Normal file
View file

@ -0,0 +1,25 @@
# OneDark
# Palette based on the same theme from https://github.com/dexpota/kitty-themes
[colors]
cursor=111111 cccccc
foreground=979eab
background=282c34
regular0=282c34 # black
regular1=e06c75 # red
regular2=98c379 # green
regular3=e5c07b # yellow
regular4=61afef # blue
regular5=be5046 # magenta
regular6=56b6c2 # cyan
regular7=979eab # white
bright0=393e48 # bright black
bright1=d19a66 # bright red
bright2=56b6c2 # bright green
bright3=e5c07b # bright yellow
bright4=61afef # bright blue
bright5=be5046 # bright magenta
bright6=56b6c2 # bright cyan
bright7=abb2bf # bright white
# selection-foreground=282c34
# selection-background=979eab

View file

@ -1,4 +1,5 @@
theme = "github_dark"
# theme = "github_dark"
theme = "adwaita-light"
[editor]

View file

@ -3,3 +3,8 @@ name="c"
indent = { tab-width=1, unit=" "}
# formatter = { command = "clang-format", args=["--style=file"] }
auto-format = true
[[language]]
name="cpp"
indent = { tab-width=1, unit=" "}
auto-format = true

1
.zshrc
View file

@ -106,6 +106,7 @@ alias glo='git log --graph --oneline --all --decorate'
# Random stuff
alias rot13="tr 'A-Za-z' 'N-ZA-Mn-za-m'"
alias sshfs="sshfs -o follow_symlinks"
alias cm=" cmake -S . -B build && cmake --build build"
# Shell integrations
eval "$(fzf --zsh)"