Compare commits
8 Commits
e9623a96b0
...
2646ae89cb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2646ae89cb | ||
|
|
e16bc7fb46 | ||
|
|
a6ca6f2957 | ||
|
|
9d25d8cb3c | ||
|
|
e6b273f8a2 | ||
|
|
a5e98eefe6 | ||
|
|
1facde8418 | ||
|
|
65463fcfe3 |
@@ -188,8 +188,6 @@ alias userlist="cut -d: -f1 /etc/passwd | sort"
|
||||
alias ip='ip -color'
|
||||
alias stow='stow -d $DOTFILES '
|
||||
alias em='emacsclient -t'
|
||||
alias ssh='ssh.exe'
|
||||
alias ssh-add='ssh-add.exe'
|
||||
|
||||
# User specific aliases and functions
|
||||
if [ -d ~/.bashrc.d ]; then
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if command -v /home/linuxbrew/.linuxbrew/bin/zoxide >/dev/null 2>&1; then
|
||||
eval "$(/home/linuxbrew/.linuxbrew/bin/zoxide init bash)"
|
||||
if command -v zoxide >/dev/null 2>&1; then
|
||||
eval "$(zoxide init bash)"
|
||||
fi
|
||||
|
||||
@@ -15,7 +15,8 @@ export QT_STYLE_OVERRIDE=kvantum
|
||||
export QT_AUTO_SCREEN_SCALE_FACTOR=1
|
||||
|
||||
export DOTFILES="$HOME/.dotfiles"
|
||||
export EDITOR=nano
|
||||
export EDITOR="emacs -nw"
|
||||
export VISUAL="emacs"
|
||||
|
||||
# SSH socket
|
||||
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/gcr/ssh"
|
||||
@@ -46,8 +47,6 @@ appendpath() {
|
||||
esac
|
||||
}
|
||||
|
||||
# appendpath "/home/linuxbrew/.linuxbrew/bin"
|
||||
appendpath "$HOME/.local/bin"
|
||||
appendpath "$GOBIN"
|
||||
# appendpath "$HOME/.cargo/bin"
|
||||
unset appendpath
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# for a list of all available themes
|
||||
|
||||
# Theme
|
||||
--theme="Catppuccin Mocha"
|
||||
--theme="Coldark-Dark"
|
||||
|
||||
# Style
|
||||
--style="header,changes,numbers"
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
'tools/project
|
||||
'tools/lsp
|
||||
'tools/dap
|
||||
'tools/treesitter
|
||||
;; 'tools/treesitter
|
||||
|
||||
;; Languages
|
||||
'lang/c
|
||||
|
||||
@@ -7,10 +7,16 @@
|
||||
(use-package soothe-theme
|
||||
:ensure t)
|
||||
|
||||
(load-theme 'spolsky t)
|
||||
(use-package nordic-night-theme
|
||||
:ensure t)
|
||||
|
||||
(use-package timu-caribbean-theme
|
||||
:ensure t)
|
||||
|
||||
(load-theme 'nordic-night t)
|
||||
|
||||
;; Setting default font
|
||||
(set-frame-font "Iosevka Nerd Font 14" nil t)
|
||||
(set-frame-font "UbuntuSansMono Nerd Font 16" nil t)
|
||||
|
||||
;; Remove toolbar
|
||||
(tool-bar-mode -1)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
mbsync Gmail & pid1=$!
|
||||
mbsync -a & pid1=$!
|
||||
wait $pid1
|
||||
|
||||
mu index
|
||||
|
||||
@@ -253,7 +253,6 @@ format = "[$symbol]($style)"
|
||||
|
||||
[os.symbols]
|
||||
Arch = " "
|
||||
Bluefin = " "
|
||||
Debian = " "
|
||||
EndeavourOS = " "
|
||||
Fedora = " "
|
||||
|
||||
Reference in New Issue
Block a user