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