Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
Commit everything everywhere all at once
Browse files Browse the repository at this point in the history
  • Loading branch information
HatsuSixty committed Aug 16, 2024
1 parent 9ff6f9b commit 6875184
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .config/alacritty/alacritty.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import = ["/home/hatsu/.config/alacritty/themes/breeze.toml",
"/home/hatsu/.config/alacritty/fonts/hack-fonts.toml"]
"/home/hatsu/.config/alacritty/fonts/normal-fonts.toml"]

[cursor.style]
blinking = "On"
Expand Down
2 changes: 1 addition & 1 deletion .config/emacs/emacsrc.el
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
;;; evil

(require 'evil)
;(evil-mode 1)
(evil-mode 1)
(evil-ex-define-cmd "q[uit]" 'kill-current-buffer)
(setq evil-undo-system 'undo-redo)

Expand Down
2 changes: 1 addition & 1 deletion .config/scripts/terminal.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ bool execute_shell_command(char* command, char *const envp[])
if (pid == 0) {
char* shell = "/bin/sh";
char* const args[] = {shell, "-c", command, NULL};
chdir("/home/hatsu/hhome");
chdir("/home/hatsu/Home");
execve(shell, args, envp);
}

Expand Down
3 changes: 2 additions & 1 deletion .posixshellrc-personal
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ EOF
function cd()
{
if [ -z $@ ]; then
builtin cd $HOME/hhome
builtin cd $HOME/Home
else
builtin cd $@
fi
Expand Down Expand Up @@ -117,3 +117,4 @@ PATH=$PATH:/home/hatsu/go/bin/
PATH=$PATH:/home/hatsu/.opt/zig
PATH=$PATH:/home/hatsu/.opt/gf
PATH=$PATH:/home/hatsu/.opt/tcc/bin
PATH=$PATH:/home/hatsu/.opt/c3

0 comments on commit 6875184

Please sign in to comment.