diff --git a/.config/foot/foot.ini b/.config/foot/foot.ini new file mode 100644 index 0000000..4cc3b49 --- /dev/null +++ b/.config/foot/foot.ini @@ -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 diff --git a/.config/foot/github-dark.ini b/.config/foot/github-dark.ini new file mode 100644 index 0000000..56bc0a8 --- /dev/null +++ b/.config/foot/github-dark.ini @@ -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 diff --git a/.config/foot/onedark.ini b/.config/foot/onedark.ini new file mode 100644 index 0000000..0932960 --- /dev/null +++ b/.config/foot/onedark.ini @@ -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 diff --git a/.config/helix/config.toml b/.config/helix/config.toml index c5d0d55..741be5d 100644 --- a/.config/helix/config.toml +++ b/.config/helix/config.toml @@ -1,4 +1,5 @@ -theme = "github_dark" +# theme = "github_dark" +theme = "adwaita-light" [editor] diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml index ac3cec5..25df3e0 100644 --- a/.config/helix/languages.toml +++ b/.config/helix/languages.toml @@ -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 diff --git a/.zshrc b/.zshrc index 729c47d..14e662b 100644 --- a/.zshrc +++ b/.zshrc @@ -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)"