mirror of https://github.com/Flinner/dots.git
Changes from macbook
This commit is contained in:
parent
e71f9f4df2
commit
006bca7683
|
|
@ -2658,6 +2658,7 @@ AucTex
|
|||
(setq LaTeX-command "LaTeXMk") ;; Use latexmk as the default LaTeX command
|
||||
(setq latex-run-command "LaTeXMk"))
|
||||
|
||||
|
||||
(use-package auctex
|
||||
:mode ("\\.tex\\'" . LaTeX-mode)
|
||||
:defer t
|
||||
|
|
@ -2684,8 +2685,19 @@ AucTex
|
|||
(evil-define-key 'visual 'LaTeX-mode-map
|
||||
"$" 'TeX-insert-dollar
|
||||
"'" 'cdlatex-math-modify)
|
||||
(setq TeX-view-program-selection '((output-pdf "Zathura"))
|
||||
TeX-source-correlate-start-server t)
|
||||
|
||||
(setq TeX-view-program-selection '((output-pdf "Zathura")))
|
||||
(if (eq system-type 'darwin)
|
||||
(setq TeX-view-program-list ;; Use Skim, it's awesome
|
||||
'(("Skim" "/Applications/Skim.app/Contents/SharedSupport/displayline -g -b %n %o %b"))
|
||||
TeX-view-program-selection '((output-pdf "Skim"))))
|
||||
|
||||
(setq TeX-source-correlate-method 'synctex
|
||||
TeX-source-correlate-start-server t
|
||||
TeX-auto-save t
|
||||
TeX-parse-self t
|
||||
TeX-save-query nil
|
||||
TeX-master 'dwim)
|
||||
(setq-default TeX-output-dir "/tmp/tex")
|
||||
(add-to-list 'LaTeX-clean-intermediate-suffixes
|
||||
'"-figure[0-9]*\\.\\(pdf\\|md5\\|log\\|dpth\\|dep\\|run\\.xml\\)")
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -18,12 +18,12 @@
|
|||
#: families that have many weight variants like Book, Medium, Thick,
|
||||
#: etc. For example::
|
||||
|
||||
font_family FiraCode
|
||||
font_family JetBrainsMono Nerd Font
|
||||
#: bold_font Operator Mono Medium
|
||||
#: italic_font Operator Mono Book Italic
|
||||
#: bold_italic_font Operator Mono Medium Italic
|
||||
|
||||
font_size 9.5
|
||||
font_size 11.0
|
||||
|
||||
#: Font size (in pts)
|
||||
|
||||
|
|
@ -750,7 +750,7 @@ color15 #ebdbb2
|
|||
|
||||
#: Advanced {{{
|
||||
|
||||
shell /usr/bin/zsh
|
||||
shell /bin/zsh
|
||||
|
||||
#: The shell program to execute. The default value of . means to use
|
||||
#: whatever shell is set as the default shell for the current user.
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ $ENV{max_print_line} = $log_wrap = 1000;
|
|||
$out_dir = '/tmp/tex';
|
||||
|
||||
$pdf_mode = 1;
|
||||
$pdflatex = 'pdflatex -shell-escape -interaction=nonstopmode -synctex=1 %O %S;';
|
||||
#$pdflatex = 'lualatex -shell-escape -interaction=nonstopmode -synctex=1 %O %S;';
|
||||
#$pdflatex = 'pdflatex -shell-escape -interaction=nonstopmode -synctex=1 %O %S;';
|
||||
$pdflatex = 'PATH="/opt/homebrew/opt/python@3.13/libexec/bin:$PATH" lualatex -shell-escape -interaction=nonstopmode -synctex=1 %O %S;';
|
||||
$pdflualatex = 'lualatex -shell-escape -interaction=nonstopmode -synctex=1 %O %S;';
|
||||
|
||||
# https://stackoverflow.com/questions/71868294/set-zathura-as-a-default-viewer-while-using-latexmk
|
||||
|
|
|
|||
|
|
@ -0,0 +1,155 @@
|
|||
# ################################################################ #
|
||||
# THE FOLLOWING IS AN EXPLANATION OF THE GRAMMAR THAT SKHD PARSES. #
|
||||
# FOR SIMPLE EXAMPLE MAPPINGS LOOK FURTHER DOWN THIS FILE.. #
|
||||
# ################################################################ #
|
||||
|
||||
# A list of all built-in modifier and literal keywords can
|
||||
# be found at https://github.com/koekeishiya/skhd/issues/1
|
||||
#
|
||||
# A hotkey is written according to the following rules:
|
||||
#
|
||||
# hotkey = <mode> '<' <action> | <action>
|
||||
#
|
||||
# mode = 'name of mode' | <mode> ',' <mode>
|
||||
#
|
||||
# action = <keysym> '[' <proc_map_lst> ']' | <keysym> '->' '[' <proc_map_lst> ']'
|
||||
# <keysym> ':' <command> | <keysym> '->' ':' <command>
|
||||
# <keysym> ';' <mode> | <keysym> '->' ';' <mode>
|
||||
#
|
||||
# keysym = <mod> '-' <key> | <key>
|
||||
#
|
||||
# mod = 'modifier keyword' | <mod> '+' <mod>
|
||||
#
|
||||
# key = <literal> | <keycode>
|
||||
#
|
||||
# literal = 'single letter or built-in keyword'
|
||||
#
|
||||
# keycode = 'apple keyboard kVK_<Key> values (0x3C)'
|
||||
#
|
||||
# proc_map_lst = * <proc_map>
|
||||
#
|
||||
# proc_map = <string> ':' <command> | <string> '~' |
|
||||
# '*' ':' <command> | '*' '~'
|
||||
#
|
||||
# string = '"' 'sequence of characters' '"'
|
||||
#
|
||||
# command = command is executed through '$SHELL -c' and
|
||||
# follows valid shell syntax. if the $SHELL environment
|
||||
# variable is not set, it will default to '/bin/bash'.
|
||||
# when bash is used, the ';' delimeter can be specified
|
||||
# to chain commands.
|
||||
#
|
||||
# to allow a command to extend into multiple lines,
|
||||
# prepend '\' at the end of the previous line.
|
||||
#
|
||||
# an EOL character signifies the end of the bind.
|
||||
#
|
||||
# -> = keypress is not consumed by skhd
|
||||
#
|
||||
# * = matches every application not specified in <proc_map_lst>
|
||||
#
|
||||
# ~ = application is unbound and keypress is forwarded per usual, when specified in a <proc_map>
|
||||
#
|
||||
# A mode is declared according to the following rules:
|
||||
#
|
||||
# mode_decl = '::' <name> '@' ':' <command> | '::' <name> ':' <command> |
|
||||
# '::' <name> '@' | '::' <name>
|
||||
#
|
||||
# name = desired name for this mode,
|
||||
#
|
||||
# @ = capture keypresses regardless of being bound to an action
|
||||
#
|
||||
# command = command is executed through '$SHELL -c' and
|
||||
# follows valid shell syntax. if the $SHELL environment
|
||||
# variable is not set, it will default to '/bin/bash'.
|
||||
# when bash is used, the ';' delimeter can be specified
|
||||
# to chain commands.
|
||||
#
|
||||
# to allow a command to extend into multiple lines,
|
||||
# prepend '\' at the end of the previous line.
|
||||
#
|
||||
# an EOL character signifies the end of the bind.
|
||||
|
||||
# ############################################################### #
|
||||
# THE FOLLOWING SECTION CONTAIN SIMPLE MAPPINGS DEMONSTRATING HOW #
|
||||
# TO INTERACT WITH THE YABAI WM. THESE ARE SUPPOSED TO BE USED AS #
|
||||
# A REFERENCE ONLY, WHEN MAKING YOUR OWN CONFIGURATION.. #
|
||||
# ############################################################### #
|
||||
|
||||
# launch a terminal
|
||||
cmd - return : kitty ~
|
||||
|
||||
# focus window
|
||||
cmd - h : yabai -m window --focus west
|
||||
cmd - j : yabai -m window --focus south
|
||||
cmd - k : yabai -m window --focus north
|
||||
cmd - l : yabai -m window --focus east
|
||||
|
||||
# swap managed window
|
||||
shift + cmd - h : yabai -m window --swap west
|
||||
shift + cmd - j : yabai -m window --swap south
|
||||
shift + cmd - k : yabai -m window --swap north
|
||||
shift + cmd - l : yabai -m window --swap east
|
||||
|
||||
# move managed window
|
||||
# shift + cmd - h : yabai -m window --warp east
|
||||
|
||||
# balance size of windows
|
||||
# shift + alt - 0 : yabai -m space --balance
|
||||
|
||||
|
||||
# make floating window fill left-half of screen
|
||||
# shift + alt - left : yabai -m window --grid 1:2:0:0:1:1
|
||||
# create desktop, move window and follow focus - uses jq for parsing json (brew install jq)
|
||||
# shift + cmd - n : yabai -m space --create && \
|
||||
# index="$(yabai -m query --spaces --display | jq 'map(select(."is-native-fullscreen" == false))[-1].index')" && \
|
||||
# yabai -m window --space "${index}" && \
|
||||
# yabai -m space --focus "${index}"
|
||||
|
||||
# fast focus desktop
|
||||
cmd + alt - x : yabai -m space --focus recent
|
||||
cmd + alt - 1 : yabai -m space --focus 1
|
||||
|
||||
# send window to desktop and follow focus
|
||||
# shift + cmd - z : yabai -m window --space next; yabai -m space --focus next
|
||||
# shift + cmd - 2 : yabai -m window --space 2; yabai -m space --focus 2
|
||||
|
||||
# focus monitor
|
||||
# ctrl + alt - z : yabai -m display --focus prev
|
||||
# ctrl + alt - 3 : yabai -m display --focus 3
|
||||
|
||||
# send window to monitor and follow focus
|
||||
# ctrl + cmd - c : yabai -m window --display next; yabai -m display --focus next
|
||||
# ctrl + cmd - 1 : yabai -m window --display 1; yabai -m display --focus 1
|
||||
|
||||
# move floating window
|
||||
# shift + ctrl - a : yabai -m window --move rel:-20:0
|
||||
# shift + ctrl - s : yabai -m window --move rel:0:20
|
||||
|
||||
# increase window size
|
||||
# shift + alt - a : yabai -m window --resize left:-20:0
|
||||
# shift + alt - w : yabai -m window --resize top:0:-20
|
||||
|
||||
# decrease window size
|
||||
# shift + cmd - s : yabai -m window --resize bottom:0:-20
|
||||
# shift + cmd - w : yabai -m window --resize top:0:20
|
||||
|
||||
# set insertion point in focused container
|
||||
# ctrl + alt - h : yabai -m window --insert west
|
||||
|
||||
# toggle window zoom
|
||||
# alt - d : yabai -m window --toggle zoom-parent
|
||||
# alt - f : yabai -m window --toggle zoom-fullscreen
|
||||
|
||||
# toggle window split type
|
||||
cmd - space : yabai -m window --toggle split
|
||||
|
||||
# toggle float only
|
||||
cmd - s : yabai -m window --toggle float
|
||||
# float / unfloat window and center on screen
|
||||
cmd + shift - m : yabai -m window --toggle float --grid 5:5:1:1:3:3
|
||||
# make floating window fill screen
|
||||
cmd - m : yabai -m window --toggle zoom-fullscreen
|
||||
|
||||
# toggle sticky(+float), picture-in-picture
|
||||
# alt - p : yabai -m window --toggle sticky --toggle pip
|
||||
Loading…
Reference in New Issue