Compare commits

...

8 Commits

Author SHA1 Message Date
1bb836dee1 pythonpad : env applied. 2025-12-05 13:52:07 +09:00
218ca4bbd7 emacs : use built-in org-mode 2025-08-13 20:22:12 +09:00
a6759eff18 script : nvim 2025-08-13 20:21:51 +09:00
023a6d0c5b fish : atuin is out 2025-08-13 20:21:09 +09:00
aaee6aef92 emacs : org download location setup 2025-08-12 16:00:59 +09:00
b2b4dd33a5 zsh : python startup env 2025-08-12 16:00:36 +09:00
fc4538ac6e python pad 2025-08-12 16:00:23 +09:00
92c63e4949 pythonpad 2025-08-12 16:00:12 +09:00
7 changed files with 47 additions and 17 deletions

View File

@ -70,7 +70,8 @@ bspc config normal_private_border_color "$color1"
bspc rule -a Emacs state=tiled
# bspc rule -a \* state=tiled
bspc rule -a scpad sticky=on state=floating rectangle=1400x600+660+40
bspc rule -a scpad sticky=on state=floating rectangle=1400x700+660+40
bspc rule -a pythonpad sticky=on state=floating rectangle=1400x700+660+40
# TODO heres polybar
if [[ $JUPCID == "HOME-DESKTOP" ]]; then

View File

@ -4,7 +4,7 @@
(require 'init-custom)
(use-package org
:ensure nil ; built-in
:straight (:type built-in)
:custom-face (org-ellipsis ((t (:foreground unspecified))))
:pretty-hydra
;; See `org-structure-template-alist'
@ -314,23 +314,25 @@ prepended to the element after the #+HEADER: tag."
(use-package org-contrib ;; to use org-screenshot-take
:straight t
:ensure t
:defer t
:defer t)
(use-package org-attach-screenshot
:straight t
:ensure t
:defer t
:defer t)
(use-package org-download
:after org
:straight t
:ensure t
:defer t
:defer t)
:demand t
:init
(setq org-download-image-dir "./images")
(setq org-download-heading-lvl nil)
:config
(org-download-enable))
(use-package ob-latex-as-png
:straight t
:ensure t
:defer t
:ensure t)
:defer t)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Org roam ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

View File

@ -87,7 +87,7 @@ alias emt="emacsclient -c -a 'emacs -nw'"
#neovim to vi
alias vi=nvim
alias vimdiff="nvim -d"
alias cat=bat
#alias cat=bat
#grub update
alias update-grub="sudo grub-mkconfig -o /boot/grub/grub.cfg"
@ -104,5 +104,3 @@ alias update-grub="sudo grub-mkconfig -o /boot/grub/grub.cfg"
export PYTHONSTARTUP=/home/jaeus/scripts/my_imports.py
starship init fish | source
atuin init fish | source

View File

@ -4,6 +4,8 @@ super+Return
alacritty
super+shift+Return
~/scripts/scpad
super+shift+p
~/scripts/pythonpad
#Apps and programs
super+e
emacsclient -c -a 'emacs'
@ -44,6 +46,12 @@ super+w
super+shift+r
bspc wm -r
# lock screen
super+shift+l
i3lock-fancy
# resize
super+alt+l
bspc node focused -z right 15 0

8
.zshrc
View File

@ -46,6 +46,12 @@ if [[ $JUPCID == "WSL" ]];then
fi
# python env
export PYTHONSTARTUP=~/scripts/my_imports.py
export PYTHONSTARTUPSCRIPT=~/scripts/my_imports.py
eval "$(starship init zsh)"
# pokemon-colorscripts --no-title -s -r
. "$HOME/.atuin/bin/env"
eval "$(atuin init zsh)"

View File

@ -21,14 +21,11 @@ git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/cust
mv ~/.zshrc.pre-oh-my-zsh ~/.zshrc
# fish
paru -S fish starship autin bat --noconfirm
paru -S fish starship bat --noconfirm
# neovim
paru -S neovim --noconfirm
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
nvim +PlugInstall +q +q
paru -S neovim nvim-lazy --noconfirm
# git config
git config --global user.name "JaeYoo-Im"

18
scripts/pythonpad Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env bash
winclass="$(xdotool search --class pythonpad)";
if [ -z "$winclass" ]; then
PYTHONSTARTUP=/home/jaeus/scripts/my_imports.py alacritty --class pythonpad -e python
else
if [ ! -f /tmp/pythonpad ]; then
touch /tmp/pythonpad && xdo hide "$winclass"
elif [ -f /tmp/pythonpad ]; then
rm /tmp/pythonpad && xdo show "$winclass"
fi
fi