diff options
29 files changed, 439 insertions, 323 deletions
diff --git a/.config/efm-langserver/config.yaml b/.config/efm-langserver/config.yaml index baffb69..77ee931 100644 --- a/.config/efm-langserver/config.yaml +++ b/.config/efm-langserver/config.yaml | |||
| @@ -14,7 +14,8 @@ tools: | |||
| 14 | format-command: 'shfmt -ci -s -bn -i 4 -sr' | 14 | format-command: 'shfmt -ci -s -bn -i 4 -sr' |
| 15 | format-stdin: true | 15 | format-stdin: true |
| 16 | tex-fmt-formatter: &tex-fmt-formatter | 16 | tex-fmt-formatter: &tex-fmt-formatter |
| 17 | format-command: 'tex-fmt --keep --tab 4 --print' | 17 | format-command: 'tex-fmt --tabsize 4 --stdin' |
| 18 | format-stdin: true | ||
| 18 | languages: | 19 | languages: |
| 19 | sh: | 20 | sh: |
| 20 | - <<: *sh-shellcheck | 21 | - <<: *sh-shellcheck |
diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 4f7aab8..7dce7a2 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish | |||
| @@ -8,6 +8,7 @@ set --global --export GOPATH $HOME/.local/share/go | |||
| 8 | set --global --export GPG_TTY (tty) | 8 | set --global --export GPG_TTY (tty) |
| 9 | set --global fish_prompt_pwd_dir_length 0 | 9 | set --global fish_prompt_pwd_dir_length 0 |
| 10 | set --global direnv_fish_mode eval_on_arrow | 10 | set --global direnv_fish_mode eval_on_arrow |
| 11 | set --global VIRTUAL_ENV_DISABLE_PROMPT true | ||
| 11 | 12 | ||
| 12 | # nnn | 13 | # nnn |
| 13 | set --global --export NNN_OPENER $HOME/.local/bin/nuke | 14 | set --global --export NNN_OPENER $HOME/.local/bin/nuke |
diff --git a/.config/fish/fish_variables b/.config/fish/fish_variables index b32dfe3..6120a57 100644 --- a/.config/fish/fish_variables +++ b/.config/fish/fish_variables | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | # This file contains fish universal variable definitions. | 1 | # This file contains fish universal variable definitions. |
| 2 | # VERSION: 3.0 | 2 | # VERSION: 3.0 |
| 3 | SETUVAR __fish_initialized:3400 | 3 | SETUVAR __fish_initialized:3800 |
| 4 | SETUVAR _fish_abbr_dr:dragon\x2ddrop | 4 | SETUVAR _fish_abbr_dr:dragon\x2ddrop |
| 5 | SETUVAR _fisher_franciscolourenco_2F_done_files:\x7e/\x2econfig/fish/conf\x2ed/done\x2efish | 5 | SETUVAR _fisher_franciscolourenco_2F_done_files:\x7e/\x2econfig/fish/conf\x2ed/done\x2efish |
| 6 | SETUVAR _fisher_jorgebucaran_2F_nvm_2E_fish_files:\x7e/\x2econfig/fish/functions/_nvm_index_update\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_list\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_version_activate\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_version_deactivate\x2efish\x1e\x7e/\x2econfig/fish/functions/nvm\x2efish\x1e\x7e/\x2econfig/fish/conf\x2ed/nvm\x2efish\x1e\x7e/\x2econfig/fish/completions/nvm\x2efish | 6 | SETUVAR _fisher_jorgebucaran_2F_nvm_2E_fish_files:\x7e/\x2econfig/fish/functions/_nvm_index_update\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_list\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_version_activate\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_version_deactivate\x2efish\x1e\x7e/\x2econfig/fish/functions/nvm\x2efish\x1e\x7e/\x2econfig/fish/conf\x2ed/nvm\x2efish\x1e\x7e/\x2econfig/fish/completions/nvm\x2efish |
| @@ -46,4 +46,4 @@ SETUVAR fish_pager_color_selected_background:\x1d | |||
| 46 | SETUVAR fish_pager_color_selected_completion:\x1d | 46 | SETUVAR fish_pager_color_selected_completion:\x1d |
| 47 | SETUVAR fish_pager_color_selected_description:\x1d | 47 | SETUVAR fish_pager_color_selected_description:\x1d |
| 48 | SETUVAR fish_pager_color_selected_prefix:\x1d | 48 | SETUVAR fish_pager_color_selected_prefix:\x1d |
| 49 | SETUVAR fish_user_paths:/home/yigit/\x2ecargo/bin\x1e/home/yigit/\x2elocal/bin | 49 | SETUVAR fish_user_paths:/home/yigit/\x2enix\x2dprofile/bin\x1e/home/yigit/\x2ecargo/bin\x1e/home/yigit/\x2elocal/bin |
diff --git a/.config/git/ignore b/.config/git/ignore index 116f8e7..5bfa88b 100644 --- a/.config/git/ignore +++ b/.config/git/ignore | |||
| @@ -3,3 +3,4 @@ | |||
| 3 | tags | 3 | tags |
| 4 | rusty-tags.vi | 4 | rusty-tags.vi |
| 5 | *.svg | 5 | *.svg |
| 6 | ltex.dictionary.* | ||
diff --git a/.config/hypr/conf/gestures.conf b/.config/hypr/conf/gestures.conf new file mode 100644 index 0000000..ac2ade3 --- /dev/null +++ b/.config/hypr/conf/gestures.conf | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | gesture = 3, horizontal, workspace | ||
| 2 | gesture = 3, vertical, fullscreen | ||
diff --git a/.config/hypr/conf/keybinds.conf b/.config/hypr/conf/keybinds.conf index b192c5d..ecb142c 100644 --- a/.config/hypr/conf/keybinds.conf +++ b/.config/hypr/conf/keybinds.conf | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | # See https://wiki.hyprland.org/Configuring/Keywords/ | 3 | # See https://wiki.hyprland.org/Configuring/Keywords/ |
| 4 | $mainMod = SUPER | 4 | $mainMod = SUPER |
| 5 | $terminal = kitty | 5 | $terminal = foot |
| 6 | $fileManager = thunar | 6 | $fileManager = thunar |
| 7 | $menu = tofi-drun | xargs hyprctl dispatch exec -- | 7 | $menu = tofi-drun | xargs hyprctl dispatch exec -- |
| 8 | 8 | ||
| @@ -10,10 +10,10 @@ $menu = tofi-drun | xargs hyprctl dispatch exec -- | |||
| 10 | bind = $mainMod+SHIFT, code:41, exec, $fileManager # f | 10 | bind = $mainMod+SHIFT, code:41, exec, $fileManager # f |
| 11 | bind = $mainMod, RETURN, exec, $terminal | 11 | bind = $mainMod, RETURN, exec, $terminal |
| 12 | bind = $mainMod, code:71, exec, $HOME/.local/bin/mailsync # f5 | 12 | bind = $mainMod, code:71, exec, $HOME/.local/bin/mailsync # f5 |
| 13 | bind = ,code:118, exec, copyq menu # ins | 13 | bind = ,code:118, exec, copyq show # ins |
| 14 | bind = $mainMod, 0, exec, swaync-client --hide-latest | 14 | bind = $mainMod, 0, exec, swaync-client --hide-latest |
| 15 | bind = $mainMod+SHIFT, 0, exec, swaync-client -t | 15 | bind = $mainMod+SHIFT, 0, exec, swaync-client -t |
| 16 | bindr = SUPER+SHIFT, escape, exec, wlogout | 16 | bindr = $mainMod+SHIFT, escape, exec, wlogout |
| 17 | bindr = $mainMod, code:42, exec, $HOME/.local/bin/done # g | 17 | bindr = $mainMod, code:42, exec, $HOME/.local/bin/done # g |
| 18 | bindr = $mainMod, code:30, exec, $HOME/.local/bin/bukuadd_c # u | 18 | bindr = $mainMod, code:30, exec, $HOME/.local/bin/bukuadd_c # u |
| 19 | bindr = $mainMod, code:35, exec, $HOME/.local/bin/td # ] | 19 | bindr = $mainMod, code:35, exec, $HOME/.local/bin/td # ] |
| @@ -29,17 +29,17 @@ bindl = , XF86AudioPlay, exec, playerctl play-pause | |||
| 29 | bindl = , XF86AudioNext, exec, playerctl next | 29 | bindl = , XF86AudioNext, exec, playerctl next |
| 30 | bindl = , XF86AudioPrev, exec, playerctl previous | 30 | bindl = , XF86AudioPrev, exec, playerctl previous |
| 31 | 31 | ||
| 32 | # Colour picker | ||
| 33 | # https://wimpysworld.com/posts/fuzzel-hyprpicker/ | ||
| 34 | bind = $mainMod, code:32, exec, $HOME/.local/bin/fuzzel_hyprpicker.sh | ||
| 35 | |||
| 32 | # Screenshots: | 36 | # Screenshots: |
| 33 | # Super+P: Current window | ||
| 34 | # Super+Shift+p: Select area | ||
| 35 | # Super+Alt+p Current output | ||
| 36 | # Super+Ctrl+p All outputs | ||
| 37 | 37 | ||
| 38 | # Optionally, customize slurp's appearance | 38 | # Optionally, customize slurp's appearance |
| 39 | env = SLURP_ARGS, -d -B F050F022 -b 10101022 -c ff00ff | 39 | env = SLURP_ARGS, -d -B F050F022 -b 10101022 -c ff00ff |
| 40 | 40 | ||
| 41 | bind = ,Print, exec, ~/.local/bin/screenshot.sh | 41 | bind = SHIFT, Print, exec, grimblast copysave area |
| 42 | bind = SHIFT, Print, exec, grimblast copy area | 42 | bind = ,Print, exec, grimblast copy area |
| 43 | 43 | ||
| 44 | # Move focus | 44 | # Move focus |
| 45 | bind = $mainMod, code:43, movefocus, l | 45 | bind = $mainMod, code:43, movefocus, l |
diff --git a/.config/hypr/conf/monitor.conf b/.config/hypr/conf/monitor.conf index e04dfb1..de07cbe 100644 --- a/.config/hypr/conf/monitor.conf +++ b/.config/hypr/conf/monitor.conf | |||
| @@ -2,4 +2,4 @@ | |||
| 2 | monitor=eDP-1,highres,auto,1 | 2 | monitor=eDP-1,highres,auto,1 |
| 3 | 3 | ||
| 4 | # # autoconfig any additional monitor | 4 | # # autoconfig any additional monitor |
| 5 | monitor=HDMI-A-1,highres,auto-up,1.25 | 5 | monitor=HDMI-A-1,highres,auto-up,1 |
diff --git a/.config/hypr/conf/windowrules.conf b/.config/hypr/conf/windowrules.conf index 9f3995c..ab0676b 100644 --- a/.config/hypr/conf/windowrules.conf +++ b/.config/hypr/conf/windowrules.conf | |||
| @@ -1,73 +1,81 @@ | |||
| 1 | # See https://wiki.hyprland.org/Configuring/Window-Rules/ | 1 | # See https://wiki.hyprland.org/Configuring/Window-Rules/ |
| 2 | windowrulev2 = suppressevent maximize, class:.* | 2 | windowrule = suppressevent maximize, class:.* |
| 3 | 3 | ||
| 4 | # polkit auth agent | 4 | # polkit auth agent |
| 5 | windowrulev2 = float, class:org.kde.polkit-kde-authentication-agent-1 | 5 | windowrule = float, class:org.kde.polkit-kde-authentication-agent-1 |
| 6 | 6 | ||
| 7 | # yad | 7 | # yad |
| 8 | windowrulev2 = float, class:yad | 8 | windowrule = float, class:yad |
| 9 | 9 | ||
| 10 | # Libre Office | 10 | # Libre Office |
| 11 | windowrulev2 = size 800 600, class:soffice,title:Export | 11 | windowrule = size 800 600, class:soffice,title:Export |
| 12 | 12 | ||
| 13 | # Blueman | 13 | # Blueman |
| 14 | windowrulev2 = float,class:^(blueman-manager)$ | 14 | windowrule = float,class:^(blueman-manager)$ |
| 15 | 15 | ||
| 16 | # NetworkManager | 16 | # NetworkManager |
| 17 | windowrulev2 = float,class:^(nm-connection-editor)$ | 17 | windowrule = float,class:^(nm-connection-editor)$ |
| 18 | 18 | ||
| 19 | # Pavucontrol | 19 | # Pavucontrol |
| 20 | windowrulev2 = float,class:^(org.pulseaudio.pavucontrol)$ | 20 | windowrule = float,class:^(org.pulseaudio.pavucontrol)$ |
| 21 | windowrulev2 = size 800 600,class:^(org.pulseaudio.pavucontrol)$ | 21 | windowrule = size 800 600,class:^(org.pulseaudio.pavucontrol)$ |
| 22 | 22 | ||
| 23 | # copyq | 23 | # copyq |
| 24 | windowrulev2 = float, class:com.github.hluk.copyq | 24 | windowrule = float, class:com.github.hluk.copyq |
| 25 | windowrulev2 = noborder, class:com.github.hluk.copyq | 25 | windowrule = noborder, class:com.github.hluk.copyq |
| 26 | windowrulev2 = noblur, class:com.github.hluk.copyq | 26 | windowrule = noblur, class:com.github.hluk.copyq |
| 27 | windowrulev2 = dimaround, class:com.github.hluk.copyq | 27 | windowrule = dimaround, class:com.github.hluk.copyq |
| 28 | windowrulev2 = move 70% 10%, class:com.github.hluk.copyq | 28 | windowrule = move 55% 15%, class:com.github.hluk.copyq |
| 29 | windowrule = size 35% 65%, class:com.github.hluk.copyq | ||
| 29 | 30 | ||
| 30 | # Firefox | 31 | # Firefox |
| 31 | windowrulev2 = workspace name:browser silent, class:firefox | 32 | windowrule = workspace name:browser silent, class:firefox |
| 32 | 33 | ||
| 33 | # Browser Picture in Picture | 34 | # Browser Picture in Picture |
| 34 | windowrulev2 = float, title:^(Picture-in-Picture)$ | 35 | windowrule = float, title:^(Picture-in-Picture)$ |
| 35 | windowrulev2 = pin, title:^(Picture-in-Picture)$ | 36 | windowrule = pin, title:^(Picture-in-Picture)$ |
| 36 | windowrulev2 = move 72% 40%, title:^(Picture-in-Picture)$ | 37 | windowrule = move 72% 40%, title:^(Picture-in-Picture)$ |
| 37 | windowrulev2 = size 520 390, title:^(Picture-in-Picture)$ | 38 | windowrule = size 520 390, title:^(Picture-in-Picture)$ |
| 38 | 39 | ||
| 39 | # Discord Popout | 40 | # Discord Popout |
| 40 | windowrulev2 = float, title:^(Discord Popout)$ | 41 | windowrule = float, title:^(Discord Popout)$ |
| 41 | windowrulev2 = pin, title:^(Discord Popout)$ | 42 | windowrule = pin, title:^(Discord Popout)$ |
| 42 | windowrulev2 = move 72% 40%, title:^(Discord Popout)$ | 43 | windowrule = move 72% 40%, title:^(Discord Popout)$ |
| 43 | windowrulev2 = size 573 354, title:^(Discord Popout)$ | 44 | windowrule = size 573 354, title:^(Discord Popout)$ |
| 44 | 45 | ||
| 45 | # Xwaylandvideobridge | 46 | # Xwaylandvideobridge |
| 46 | windowrulev2 = opacity 0.0 override,class:^(xwaylandvideobridge)$ | 47 | windowrule = opacity 0.0 override,class:^(xwaylandvideobridge)$ |
| 47 | windowrulev2 = noanim,class:^(xwaylandvideobridge)$ | 48 | windowrule = noanim,class:^(xwaylandvideobridge)$ |
| 48 | windowrulev2 = noinitialfocus,class:^(xwaylandvideobridge)$ | 49 | windowrule = noinitialfocus,class:^(xwaylandvideobridge)$ |
| 49 | windowrulev2 = maxsize 1 1,class:^(xwaylandvideobridge)$ | 50 | windowrule = maxsize 1 1,class:^(xwaylandvideobridge)$ |
| 50 | windowrulev2 = noblur,class:^(xwaylandvideobridge)$ | 51 | windowrule = noblur,class:^(xwaylandvideobridge)$ |
| 51 | 52 | ||
| 52 | # Zotero | 53 | # Zotero |
| 53 | windowrulev2 = workspace name:zotero silent, class:Zotero | 54 | windowrule = workspace name:zotero silent, class:Zotero |
| 54 | 55 | ||
| 55 | windowrulev2 = float, class:^(Zotero)$,title:^(Progress)$ | 56 | windowrule = float, class:^(Zotero)$,title:^(Progress)$ |
| 56 | windowrulev2 = noinitialfocus, class:^(Zotero)$,title:^(Progress)$ | 57 | windowrule = noinitialfocus, class:^(Zotero)$,title:^(Progress)$ |
| 57 | windowrulev2 = move 1579 954, class:^(Zotero)$,title:^(Progress)$ | 58 | windowrule = move 1579 954, class:^(Zotero)$,title:^(Progress)$ |
| 58 | windowrulev2 = size 300 72, class:^(Zotero)$,title:^(Progress)$ | 59 | windowrule = size 300 72, class:^(Zotero)$,title:^(Progress)$ |
| 59 | windowrulev2 = size 445 195, class:^(Zotero)$,title:^(New Collection)$ | 60 | windowrule = size 445 195, class:^(Zotero)$,title:^(New Collection)$ |
| 60 | 61 | ||
| 61 | # Thunar | 62 | # Thunar |
| 62 | windowrulev2 = float, class:^(Thunar)$,title:^(File Operation Progress)$ | 63 | windowrule = float, class:^(Thunar)$,title:^(File Operation Progress)$ |
| 63 | windowrulev2 = noinitialfocus, class:^(Thunar)$,title:^(File Operation Progress)$ | 64 | windowrule = noinitialfocus, class:^(Thunar)$,title:^(File Operation Progress)$ |
| 64 | windowrulev2 = size 505 100, class:^(Thunar)$,title:^(File Operation Progress)$ | 65 | windowrule = size 505 100, class:^(Thunar)$,title:^(File Operation Progress)$ |
| 66 | windowrule = float, class:^(Thunar)$,title:^(Rename).*$ | ||
| 67 | |||
| 68 | # engrampa | ||
| 69 | windowrule = float, class:^(engrampa)$,title:^(Extract archive)$ | ||
| 65 | 70 | ||
| 66 | # Spotify | 71 | # Spotify |
| 67 | windowrulev2 = workspace name:music silent, class:^(Spotify)$ | 72 | windowrule = workspace name:music silent, class:^(Spotify)$ |
| 68 | 73 | ||
| 69 | # Thunderbird | 74 | # Thunderbird |
| 70 | windowrulev2 = float, class:^(thunderbird)$,title:^(Edit Item)$ | 75 | windowrule = float, class:^(thunderbird)$,title:^(Edit Item)$ |
| 71 | windowrulev2 = size 720 790, class:^(thunderbird)$,title:^(Edit Item)$ | 76 | windowrule = size 720 790, class:^(thunderbird)$,title:^(Edit Item)$ |
| 72 | windowrulev2 = float, class:^(thunderbird)$,title:^(TbSync account manager)$ | 77 | windowrule = float, class:^(thunderbird)$,title:^(TbSync account manager)$ |
| 73 | windowrulev2 = size 1100 880, class:^(thunderbird)$,title:^(Edit Item)$ | 78 | windowrule = size 1100 880, class:^(thunderbird)$,title:^(Edit Item)$ |
| 79 | |||
| 80 | # Zoom | ||
| 81 | windowrule=stayfocused,class:(zoom),initialTitle:(menu window) | ||
diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 516432d..329117c 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf | |||
| @@ -11,6 +11,8 @@ source = ~/.config/hypr/conf/sound_brightness_notifications.conf | |||
| 11 | 11 | ||
| 12 | source = ~/.config/hypr/conf/windowrules.conf | 12 | source = ~/.config/hypr/conf/windowrules.conf |
| 13 | 13 | ||
| 14 | source = ~/.config/hypr/conf/gestures.conf | ||
| 15 | |||
| 14 | # Some default env vars. | 16 | # Some default env vars. |
| 15 | env = GDK_BACKEND,wayland,x11,* | 17 | env = GDK_BACKEND,wayland,x11,* |
| 16 | env = QT_QPA_PLATFORM,wayland;xcb | 18 | env = QT_QPA_PLATFORM,wayland;xcb |
| @@ -30,10 +32,10 @@ env = SEMESTER_THEME,you got this | |||
| 30 | 32 | ||
| 31 | # For all categories, see https://wiki.hyprland.org/Configuring/Variables/ | 33 | # For all categories, see https://wiki.hyprland.org/Configuring/Variables/ |
| 32 | input { | 34 | input { |
| 33 | kb_layout = us | 35 | kb_layout = us,tr |
| 34 | kb_variant = colemak | 36 | kb_variant = colemak, |
| 35 | kb_model = | 37 | kb_model = |
| 36 | kb_options = | 38 | kb_options = grp:alt_shift_toggle |
| 37 | kb_rules = | 39 | kb_rules = |
| 38 | numlock_by_default = true | 40 | numlock_by_default = true |
| 39 | 41 | ||
| @@ -106,14 +108,10 @@ master { | |||
| 106 | new_status = master | 108 | new_status = master |
| 107 | } | 109 | } |
| 108 | 110 | ||
| 109 | gestures { | ||
| 110 | # See https://wiki.hyprland.org/Configuring/Variables/ | ||
| 111 | workspace_swipe = on | ||
| 112 | } | ||
| 113 | |||
| 114 | misc { | 111 | misc { |
| 115 | # See https://wiki.hyprland.org/Configuring/Variables/ | 112 | # See https://wiki.hyprland.org/Configuring/Variables/ |
| 116 | force_default_wallpaper = 0 # Set to 0 or 1 to disable the anime mascot wallpapers | 113 | force_default_wallpaper = 0 # Set to 0 or 1 to disable the anime mascot wallpapers |
| 114 | enable_anr_dialog = false | ||
| 117 | } | 115 | } |
| 118 | 116 | ||
| 119 | binds { | 117 | binds { |
diff --git a/.config/mutt/mailcap b/.config/mutt/mailcap index b355f32..027a394 100644 --- a/.config/mutt/mailcap +++ b/.config/mutt/mailcap | |||
| @@ -7,3 +7,5 @@ audio/*; mpv %s ; | |||
| 7 | application/pdf; openfile %s ; | 7 | application/pdf; openfile %s ; |
| 8 | application/pgp-encrypted; gpg -d '%s'; copiousoutput; | 8 | application/pgp-encrypted; gpg -d '%s'; copiousoutput; |
| 9 | application/pgp-keys; gpg --import '%s'; copiousoutput; | 9 | application/pgp-keys; gpg --import '%s'; copiousoutput; |
| 10 | application/vnd.ms-excel; openfile '%s'; | ||
| 11 | application/vnd.openxmlformats-officedocument.spreadsheetml.sheet ; openfile '%s'; | ||
diff --git a/.config/nvchecker/nvchecker.toml b/.config/nvchecker/nvchecker.toml index 3c0a3f1..cc18162 100644 --- a/.config/nvchecker/nvchecker.toml +++ b/.config/nvchecker/nvchecker.toml | |||
| @@ -49,11 +49,6 @@ source = "github" | |||
| 49 | github = "logisim-evolution/logisim-evolution" | 49 | github = "logisim-evolution/logisim-evolution" |
| 50 | use_latest_release = true | 50 | use_latest_release = true |
| 51 | 51 | ||
| 52 | [popcorntime] | ||
| 53 | source = "github" | ||
| 54 | github = "popcorn-official/popcorn-desktop" | ||
| 55 | use_latest_release = true | ||
| 56 | |||
| 57 | [the-deeps] | 52 | [the-deeps] |
| 58 | source = "github" | 53 | source = "github" |
| 59 | github = "oicleevan/the-deeps" | 54 | github = "oicleevan/the-deeps" |
diff --git a/.config/nvim/after/ftplugin/c.vim b/.config/nvim/after/ftplugin/c.vim index 25eeecd..41a9917 100644 --- a/.config/nvim/after/ftplugin/c.vim +++ b/.config/nvim/after/ftplugin/c.vim | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | setlocal tabstop=8 | 1 | setlocal tabstop=2 |
| 2 | setlocal softtabstop=8 | 2 | setlocal softtabstop=2 |
| 3 | setlocal shiftwidth=8 | 3 | setlocal shiftwidth=2 |
| 4 | setlocal noexpandtab | 4 | setlocal noexpandtab |
diff --git a/.config/nvim/after/plugin/autocmds.lua b/.config/nvim/after/plugin/autocmds.lua deleted file mode 100644 index 3751cd4..0000000 --- a/.config/nvim/after/plugin/autocmds.lua +++ /dev/null | |||
| @@ -1,158 +0,0 @@ | |||
| 1 | local function augroup(name) | ||
| 2 | return vim.api.nvim_create_augroup("lazyvim_" .. name, { clear = true }) | ||
| 3 | end | ||
| 4 | |||
| 5 | -- Set typst filetype | ||
| 6 | vim.api.nvim_create_autocmd( | ||
| 7 | { | ||
| 8 | "BufNewFile", | ||
| 9 | "BufRead", | ||
| 10 | }, | ||
| 11 | { | ||
| 12 | pattern = "*.typ", | ||
| 13 | callback = function() | ||
| 14 | local buf = vim.api.nvim_get_current_buf() | ||
| 15 | vim.api.nvim_set_option_value("filetype", "typst", { buf = buf }) | ||
| 16 | vim.api.nvim_set_option_value("shiftwidth", 2, { buf = buf }) | ||
| 17 | end | ||
| 18 | } | ||
| 19 | ) | ||
| 20 | |||
| 21 | -- Set PKGBUILD filetype | ||
| 22 | vim.api.nvim_create_autocmd( | ||
| 23 | { | ||
| 24 | "BufNewFile", | ||
| 25 | "BufRead", | ||
| 26 | }, | ||
| 27 | { | ||
| 28 | pattern = "PKGBUILD", | ||
| 29 | callback = function() | ||
| 30 | local buf = vim.api.nvim_get_current_buf() | ||
| 31 | vim.api.nvim_set_option_value("filetype", "PKGBUILD", { buf = buf }) | ||
| 32 | end | ||
| 33 | } | ||
| 34 | ) | ||
| 35 | |||
| 36 | -- Set vimwiki filetype | ||
| 37 | vim.api.nvim_create_autocmd( | ||
| 38 | { | ||
| 39 | "BufNewFile", | ||
| 40 | "BufRead", | ||
| 41 | }, | ||
| 42 | { | ||
| 43 | pattern = "PKGBUILD", | ||
| 44 | callback = function() | ||
| 45 | local buf = vim.api.nvim_get_current_buf() | ||
| 46 | vim.api.nvim_set_option_value("filetype", "*.wiki", { buf = buf }) | ||
| 47 | end | ||
| 48 | } | ||
| 49 | ) | ||
| 50 | |||
| 51 | -- Set buku-edit filetype | ||
| 52 | vim.api.nvim_create_autocmd( | ||
| 53 | { | ||
| 54 | "BufNewFile", | ||
| 55 | "BufRead", | ||
| 56 | }, | ||
| 57 | { | ||
| 58 | pattern = "buku-edit-*", | ||
| 59 | callback = function() | ||
| 60 | local buf = vim.api.nvim_get_current_buf() | ||
| 61 | vim.api.nvim_set_option_value("filetype", "buku", { buf = buf }) | ||
| 62 | end | ||
| 63 | } | ||
| 64 | ) | ||
| 65 | |||
| 66 | -- Set mail filetype | ||
| 67 | vim.api.nvim_create_autocmd( | ||
| 68 | { | ||
| 69 | "BufNewFile", | ||
| 70 | "BufRead", | ||
| 71 | }, | ||
| 72 | { | ||
| 73 | pattern = "/tmp/neomutt*", | ||
| 74 | callback = function() | ||
| 75 | local buf = vim.api.nvim_get_current_buf() | ||
| 76 | vim.api.nvim_set_option_value("autoindent", false, { buf = buf }) | ||
| 77 | vim.api.nvim_set_option_value("filetype", "mail", { buf = buf }) | ||
| 78 | vim.api.nvim_set_option_value("wrapmargin", 0, { buf = buf }) | ||
| 79 | vim.api.nvim_set_option_value("textwidth", 80, { buf = buf }) | ||
| 80 | end | ||
| 81 | } | ||
| 82 | ) | ||
| 83 | |||
| 84 | -- Resize splits if window got resized | ||
| 85 | vim.api.nvim_create_autocmd({ "VimResized" }, { | ||
| 86 | group = augroup("resize_splits"), | ||
| 87 | callback = function() | ||
| 88 | local current_tab = vim.fn.tabpagenr() | ||
| 89 | vim.cmd("tabdo wincmd =") | ||
| 90 | vim.cmd("tabnext " .. current_tab) | ||
| 91 | end, | ||
| 92 | }) | ||
| 93 | |||
| 94 | -- go to last loc when opening a buffer | ||
| 95 | vim.api.nvim_create_autocmd("BufReadPost", { | ||
| 96 | group = augroup("last_loc"), | ||
| 97 | callback = function(event) | ||
| 98 | local exclude = { "gitcommit" } | ||
| 99 | local buf = event.buf | ||
| 100 | if vim.tbl_contains(exclude, vim.bo[buf].filetype) or vim.b[buf].lazyvim_last_loc then | ||
| 101 | return | ||
| 102 | end | ||
| 103 | vim.b[buf].lazyvim_last_loc = true | ||
| 104 | local mark = vim.api.nvim_buf_get_mark(buf, '"') | ||
| 105 | local lcount = vim.api.nvim_buf_line_count(buf) | ||
| 106 | if mark[1] > 0 and mark[1] <= lcount then | ||
| 107 | pcall(vim.api.nvim_win_set_cursor, 0, mark) | ||
| 108 | end | ||
| 109 | end, | ||
| 110 | }) | ||
| 111 | |||
| 112 | -- close some filetypes with <q> | ||
| 113 | vim.api.nvim_create_autocmd("FileType", { | ||
| 114 | group = augroup("close_with_q"), | ||
| 115 | pattern = { | ||
| 116 | "PlenaryTestPopup", | ||
| 117 | "checkhealth", | ||
| 118 | "dbout", | ||
| 119 | "gitsigns-blame", | ||
| 120 | "grug-far", | ||
| 121 | "help", | ||
| 122 | "lspinfo", | ||
| 123 | "neotest-output", | ||
| 124 | "neotest-output-panel", | ||
| 125 | "neotest-summary", | ||
| 126 | "notify", | ||
| 127 | "qf", | ||
| 128 | "snacks_win", | ||
| 129 | "spectre_panel", | ||
| 130 | "startuptime", | ||
| 131 | "tsplayground", | ||
| 132 | }, | ||
| 133 | callback = function(event) | ||
| 134 | vim.bo[event.buf].buflisted = false | ||
| 135 | vim.schedule(function() | ||
| 136 | vim.keymap.set("n", "q", function() | ||
| 137 | vim.cmd("close") | ||
| 138 | pcall(vim.api.nvim_buf_delete, event.buf, { force = true }) | ||
| 139 | end, { | ||
| 140 | buffer = event.buf, | ||
| 141 | silent = true, | ||
| 142 | desc = "Quit buffer", | ||
| 143 | }) | ||
| 144 | end) | ||
| 145 | end, | ||
| 146 | }) | ||
| 147 | |||
| 148 | -- Auto create dir when saving a file, in case some intermediate directory does not exist | ||
| 149 | vim.api.nvim_create_autocmd({ "BufWritePre" }, { | ||
| 150 | group = augroup("auto_create_dir"), | ||
| 151 | callback = function(event) | ||
| 152 | if event.match:match("^%w%w+:[\\/][\\/]") then | ||
| 153 | return | ||
| 154 | end | ||
| 155 | local file = vim.uv.fs_realpath(event.match) or event.match | ||
| 156 | vim.fn.mkdir(vim.fn.fnamemodify(file, ":p:h"), "p") | ||
| 157 | end, | ||
| 158 | }) | ||
diff --git a/.config/nvim/after/plugin/autocmds.vim b/.config/nvim/after/plugin/autocmds.vim index ae55046..21c7bc4 100644 --- a/.config/nvim/after/plugin/autocmds.vim +++ b/.config/nvim/after/plugin/autocmds.vim | |||
| @@ -1,2 +1,7 @@ | |||
| 1 | " I don't know how to port this yet | 1 | " I don't know how to port this yet |
| 2 | autocmd BufRead,BufWrite * if ! &bin | silent! %s/\s\+$//ge | endif | 2 | autocmd BufRead,BufWrite * if ! &bin | silent! %s/\s\+$//ge | endif |
| 3 | |||
| 4 | augroup vimwiki | ||
| 5 | autocmd! | ||
| 6 | autocmd BufRead,BufNewFile *.wiki set filetype=vimwiki | ||
| 7 | augroup END | ||
diff --git a/.config/nvim/lua/core/options.lua b/.config/nvim/lua/core/options.lua index 1a45b8f..9962f4f 100644 --- a/.config/nvim/lua/core/options.lua +++ b/.config/nvim/lua/core/options.lua | |||
| @@ -63,6 +63,8 @@ local opts = { | |||
| 63 | -- switch case labels | 63 | -- switch case labels |
| 64 | cinoptions = "l1", | 64 | cinoptions = "l1", |
| 65 | 65 | ||
| 66 | signcolumn = "yes:1", | ||
| 67 | |||
| 66 | } | 68 | } |
| 67 | 69 | ||
| 68 | for opt, val in pairs(opts) do | 70 | for opt, val in pairs(opts) do |
diff --git a/.config/nvim/lua/helpers/autocmds.lua b/.config/nvim/lua/helpers/autocmds.lua index 11f4480..7461090 100644 --- a/.config/nvim/lua/helpers/autocmds.lua +++ b/.config/nvim/lua/helpers/autocmds.lua | |||
| @@ -29,3 +29,130 @@ vim.api.nvim_create_autocmd("VimResized", { | |||
| 29 | }, | 29 | }, |
| 30 | command = "wincmd =", | 30 | command = "wincmd =", |
| 31 | }) | 31 | }) |
| 32 | |||
| 33 | -- https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua | ||
| 34 | -- Set typst filetype | ||
| 35 | vim.api.nvim_create_autocmd( | ||
| 36 | { | ||
| 37 | "BufNewFile", | ||
| 38 | "BufRead", | ||
| 39 | }, | ||
| 40 | { | ||
| 41 | group = augroup("typst"), | ||
| 42 | pattern = "*.typ", | ||
| 43 | callback = function() | ||
| 44 | local buf = vim.api.nvim_get_current_buf() | ||
| 45 | vim.api.nvim_set_option_value("filetype", "typst", { buf = buf }) | ||
| 46 | vim.api.nvim_set_option_value("shiftwidth", 2, { buf = buf }) | ||
| 47 | end | ||
| 48 | } | ||
| 49 | ) | ||
| 50 | |||
| 51 | -- Set PKGBUILD filetype | ||
| 52 | vim.api.nvim_create_autocmd( | ||
| 53 | { | ||
| 54 | "BufNewFile", | ||
| 55 | "BufRead", | ||
| 56 | }, | ||
| 57 | { | ||
| 58 | group = augroup("pkgbuild"), | ||
| 59 | pattern = "PKGBUILD", | ||
| 60 | callback = function() | ||
| 61 | local buf = vim.api.nvim_get_current_buf() | ||
| 62 | vim.api.nvim_set_option_value("filetype", "PKGBUILD", { buf = buf }) | ||
| 63 | end | ||
| 64 | } | ||
| 65 | ) | ||
| 66 | |||
| 67 | -- Set buku-edit filetype | ||
| 68 | vim.api.nvim_create_autocmd( | ||
| 69 | { | ||
| 70 | "BufNewFile", | ||
| 71 | "BufRead", | ||
| 72 | }, | ||
| 73 | { | ||
| 74 | group = augroup("buku-edit"), | ||
| 75 | pattern = "buku-edit-*", | ||
| 76 | callback = function() | ||
| 77 | local buf = vim.api.nvim_get_current_buf() | ||
| 78 | vim.api.nvim_set_option_value("filetype", "buku", { buf = buf }) | ||
| 79 | end | ||
| 80 | } | ||
| 81 | ) | ||
| 82 | |||
| 83 | -- Set mail filetype | ||
| 84 | vim.api.nvim_create_autocmd( | ||
| 85 | { | ||
| 86 | "BufNewFile", | ||
| 87 | "BufRead", | ||
| 88 | }, | ||
| 89 | { | ||
| 90 | group = augroup("mail"), | ||
| 91 | pattern = "/tmp/neomutt*", | ||
| 92 | callback = function() | ||
| 93 | local buf = vim.api.nvim_get_current_buf() | ||
| 94 | vim.api.nvim_set_option_value("autoindent", false, { buf = buf }) | ||
| 95 | vim.api.nvim_set_option_value("filetype", "mail", { buf = buf }) | ||
| 96 | vim.api.nvim_set_option_value("wrapmargin", 0, { buf = buf }) | ||
| 97 | vim.api.nvim_set_option_value("textwidth", 80, { buf = buf }) | ||
| 98 | end | ||
| 99 | } | ||
| 100 | ) | ||
| 101 | |||
| 102 | -- Resize splits if window got resized | ||
| 103 | vim.api.nvim_create_autocmd({ "VimResized" }, { | ||
| 104 | group = augroup("resize_splits"), | ||
| 105 | callback = function() | ||
| 106 | local current_tab = vim.fn.tabpagenr() | ||
| 107 | vim.cmd("tabdo wincmd =") | ||
| 108 | vim.cmd("tabnext " .. current_tab) | ||
| 109 | end, | ||
| 110 | }) | ||
| 111 | |||
| 112 | -- close some filetypes with <q> | ||
| 113 | vim.api.nvim_create_autocmd("FileType", { | ||
| 114 | group = augroup("close_with_q"), | ||
| 115 | pattern = { | ||
| 116 | "PlenaryTestPopup", | ||
| 117 | "checkhealth", | ||
| 118 | "dbout", | ||
| 119 | "gitsigns-blame", | ||
| 120 | "grug-far", | ||
| 121 | "help", | ||
| 122 | "lspinfo", | ||
| 123 | "neotest-output", | ||
| 124 | "neotest-output-panel", | ||
| 125 | "neotest-summary", | ||
| 126 | "notify", | ||
| 127 | "qf", | ||
| 128 | "snacks_win", | ||
| 129 | "spectre_panel", | ||
| 130 | "startuptime", | ||
| 131 | "tsplayground", | ||
| 132 | }, | ||
| 133 | callback = function(event) | ||
| 134 | vim.bo[event.buf].buflisted = false | ||
| 135 | vim.schedule(function() | ||
| 136 | vim.keymap.set("n", "q", function() | ||
| 137 | vim.cmd("close") | ||
| 138 | pcall(vim.api.nvim_buf_delete, event.buf, { force = true }) | ||
| 139 | end, { | ||
| 140 | buffer = event.buf, | ||
| 141 | silent = true, | ||
| 142 | desc = "Quit buffer", | ||
| 143 | }) | ||
| 144 | end) | ||
| 145 | end, | ||
| 146 | }) | ||
| 147 | |||
| 148 | -- Auto create dir when saving a file, in case some intermediate directory does not exist | ||
| 149 | vim.api.nvim_create_autocmd({ "BufWritePre" }, { | ||
| 150 | group = augroup("auto_create_dir"), | ||
| 151 | callback = function(event) | ||
| 152 | if event.match:match("^%w%w+:[\\/][\\/]") then | ||
| 153 | return | ||
| 154 | end | ||
| 155 | local file = vim.uv.fs_realpath(event.match) or event.match | ||
| 156 | vim.fn.mkdir(vim.fn.fnamemodify(file, ":p:h"), "p") | ||
| 157 | end, | ||
| 158 | }) | ||
diff --git a/.config/nvim/lua/plugins/conform.lua b/.config/nvim/lua/plugins/conform.lua new file mode 100644 index 0000000..06231dc --- /dev/null +++ b/.config/nvim/lua/plugins/conform.lua | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | return { | ||
| 2 | { | ||
| 3 | 'stevearc/conform.nvim', | ||
| 4 | opts = { | ||
| 5 | format_on_save = { | ||
| 6 | -- These options will be passed to conform.format() | ||
| 7 | timeout_ms = 500, | ||
| 8 | lsp_format = "fallback", | ||
| 9 | }, | ||
| 10 | formatters_by_ft = { | ||
| 11 | lua = { "stylua" }, | ||
| 12 | -- Conform will run multiple formatters sequentially | ||
| 13 | -- You can customize some of the format options for the filetype (:help conform.format) | ||
| 14 | rust = { "rustfmt", lsp_format = "fallback" }, | ||
| 15 | -- Conform will run the first available formatter | ||
| 16 | javascript = { "prettierd", "prettier", stop_after_first = true }, | ||
| 17 | -- latex | ||
| 18 | tex = { "tex-fmt" }, | ||
| 19 | -- sql | ||
| 20 | sql = { "sqruff" }, | ||
| 21 | }, | ||
| 22 | } | ||
| 23 | }, | ||
| 24 | } | ||
diff --git a/.config/nvim/lua/plugins/git.lua b/.config/nvim/lua/plugins/git.lua index db1f435..5f1c1e3 100644 --- a/.config/nvim/lua/plugins/git.lua +++ b/.config/nvim/lua/plugins/git.lua | |||
| @@ -99,11 +99,11 @@ return { | |||
| 99 | { | 99 | { |
| 100 | "NeogitOrg/neogit", | 100 | "NeogitOrg/neogit", |
| 101 | dependencies = { | 101 | dependencies = { |
| 102 | "nvim-lua/plenary.nvim", -- required | 102 | "nvim-lua/plenary.nvim", -- required |
| 103 | "sindrets/diffview.nvim", -- optional - Diff integration | 103 | "sindrets/diffview.nvim", -- optional - Diff integration |
| 104 | "nvim-telescope/telescope.nvim", -- optional | 104 | "nvim-telescope/telescope.nvim", -- optional |
| 105 | }, | 105 | }, |
| 106 | cmd="Neogit", | 106 | cmd = "Neogit", |
| 107 | config = true | 107 | config = true |
| 108 | } | 108 | } |
| 109 | } | 109 | } |
diff --git a/.config/nvim/lua/plugins/lastplace.lua b/.config/nvim/lua/plugins/lastplace.lua new file mode 100644 index 0000000..72e5c7f --- /dev/null +++ b/.config/nvim/lua/plugins/lastplace.lua | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | return { | ||
| 2 | { | ||
| 3 | "ethanholz/nvim-lastplace", | ||
| 4 | |||
| 5 | opts = { | ||
| 6 | lastplace_ignore_buftype = { "quickfix", "nofile", "help" }, | ||
| 7 | lastplace_ignore_filetype = { "gitcommit", "gitrebase", "svn", "hgcommit" }, | ||
| 8 | lastplace_open_folds = true, | ||
| 9 | }, | ||
| 10 | } | ||
| 11 | } | ||
diff --git a/.config/nvim/lua/plugins/lsp.lua b/.config/nvim/lua/plugins/lsp.lua index 2fa92c2..b10aa58 100644 --- a/.config/nvim/lua/plugins/lsp.lua +++ b/.config/nvim/lua/plugins/lsp.lua | |||
| @@ -12,37 +12,38 @@ return { | |||
| 12 | local map = require("helpers.keys").map | 12 | local map = require("helpers.keys").map |
| 13 | 13 | ||
| 14 | map('n', '<leader>e', vim.diagnostic.open_float, "lsp: open diagnostics float") | 14 | map('n', '<leader>e', vim.diagnostic.open_float, "lsp: open diagnostics float") |
| 15 | map('n', '[d', vim.diagnostic.goto_prev, "lsp: goto previous diagnostic") | 15 | map('n', '[d', function() vim.diagnostic.jump({ count = -1, float = true }) end, |
| 16 | map('n', ']d', vim.diagnostic.goto_next, "lsp: goto next diagnostic") | 16 | "lsp: goto previous diagnostic") |
| 17 | 17 | map('n', ']d', function() vim.diagnostic.jump({ count = 1, float = true }) end, "lsp: goto next diagnostic") | |
| 18 | -- set up cool signs for diagnostics | ||
| 19 | local signs = { Error = " ", Warn = "", Hint = "", Info = "" } | ||
| 20 | for type, icon in pairs(signs) do | ||
| 21 | local hl = "DiagnosticSign" .. type | ||
| 22 | vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = "" }) | ||
| 23 | end | ||
| 24 | 18 | ||
| 25 | -- Diagnostic config | 19 | vim.diagnostic.config({ |
| 26 | local config = { | 20 | underline = true, |
| 27 | virtual_text = false, | ||
| 28 | signs = { | 21 | signs = { |
| 29 | active = signs, | 22 | active = true, |
| 23 | text = { | ||
| 24 | [vim.diagnostic.severity.ERROR] = "", | ||
| 25 | [vim.diagnostic.severity.WARN] = "", | ||
| 26 | [vim.diagnostic.severity.HINT] = "", | ||
| 27 | [vim.diagnostic.severity.INFO] = "", | ||
| 28 | }, | ||
| 30 | }, | 29 | }, |
| 31 | update_in_insert = true, | 30 | virtual_text = false, |
| 32 | underline = true, | ||
| 33 | severity_sort = true, | ||
| 34 | float = { | 31 | float = { |
| 35 | focusable = true, | ||
| 36 | style = "minimal", | ||
| 37 | border = "rounded", | ||
| 38 | source = "always", | ||
| 39 | header = "", | 32 | header = "", |
| 40 | prefix = "", | 33 | border = "rounded", |
| 34 | format = function(diagnostic) | ||
| 35 | return string.format( | ||
| 36 | "%s (%s) [%s]", | ||
| 37 | diagnostic.message, | ||
| 38 | diagnostic.source, | ||
| 39 | diagnostic.code or diagnostic.user_data.lsp.code | ||
| 40 | ) | ||
| 41 | end, | ||
| 41 | }, | 42 | }, |
| 42 | } | ||
| 43 | vim.diagnostic.config(config) | ||
| 44 | 43 | ||
| 45 | -- this function gets run when an lsp connects to a particular buffer. | 44 | }) |
| 45 | |||
| 46 | -- This function gets run when an LSP connects to a particular buffer. | ||
| 46 | local on_attach = function(_, bufnr) | 47 | local on_attach = function(_, bufnr) |
| 47 | map = require("helpers.keys").lsp_map | 48 | map = require("helpers.keys").lsp_map |
| 48 | 49 | ||
| @@ -71,17 +72,16 @@ return { | |||
| 71 | capabilities = require("cmp_nvim_lsp").default_capabilities(capabilities) | 72 | capabilities = require("cmp_nvim_lsp").default_capabilities(capabilities) |
| 72 | 73 | ||
| 73 | -- misc. | 74 | -- misc. |
| 74 | local lspconfig = require('lspconfig') | 75 | local servers = { 'ts_ls', 'jsonls', 'eslint', 'cssls', 'html', 'vala_ls', 'gopls', 'clangd' } |
| 75 | local servers = { 'ts_ls', 'jsonls', 'eslint', 'cssls', 'html', 'vala_ls', 'gopls' } | ||
| 76 | for _, lsp in pairs(servers) do | 76 | for _, lsp in pairs(servers) do |
| 77 | lspconfig[lsp].setup { | 77 | vim.lsp.config(lsp, { |
| 78 | on_attach = on_attach, | 78 | on_attach = on_attach, |
| 79 | capabilites = capabilities, | 79 | capabilites = capabilities, |
| 80 | } | 80 | }) |
| 81 | end | 81 | end |
| 82 | 82 | ||
| 83 | -- typst/tinymist | 83 | -- typst/tinymist |
| 84 | require("lspconfig")["tinymist"].setup({ | 84 | vim.lsp.config("tinymist", { |
| 85 | on_attach = on_attach, | 85 | on_attach = on_attach, |
| 86 | capabilities = capabilities, | 86 | capabilities = capabilities, |
| 87 | single_file_support = true, | 87 | single_file_support = true, |
| @@ -94,7 +94,7 @@ return { | |||
| 94 | }) | 94 | }) |
| 95 | 95 | ||
| 96 | -- lua | 96 | -- lua |
| 97 | require("lspconfig")["lua_ls"].setup({ | 97 | vim.lsp.config("lua_ls", { |
| 98 | on_attach = on_attach, | 98 | on_attach = on_attach, |
| 99 | capabilities = capabilities, | 99 | capabilities = capabilities, |
| 100 | settings = { | 100 | settings = { |
| @@ -116,7 +116,7 @@ return { | |||
| 116 | }) | 116 | }) |
| 117 | 117 | ||
| 118 | -- python | 118 | -- python |
| 119 | require("lspconfig")["pylsp"].setup({ | 119 | vim.lsp.config("pylsp", { |
| 120 | on_attach = on_attach, | 120 | on_attach = on_attach, |
| 121 | capabilities = capabilities, | 121 | capabilities = capabilities, |
| 122 | settings = { | 122 | settings = { |
| @@ -139,7 +139,7 @@ return { | |||
| 139 | }) | 139 | }) |
| 140 | 140 | ||
| 141 | -- efm | 141 | -- efm |
| 142 | require("lspconfig")["efm"].setup({ | 142 | vim.lsp.config("efm", { |
| 143 | on_attach = on_attach, | 143 | on_attach = on_attach, |
| 144 | settings = { | 144 | settings = { |
| 145 | initializationOptions = { | 145 | initializationOptions = { |
| @@ -155,26 +155,7 @@ return { | |||
| 155 | filetypes = { 'sh', 'tex' }, | 155 | filetypes = { 'sh', 'tex' }, |
| 156 | }) | 156 | }) |
| 157 | 157 | ||
| 158 | vim.g.rustaceanvim = { | 158 | vim.lsp.config("harper_ls", { |
| 159 | -- Plugin configuration | ||
| 160 | tools = { | ||
| 161 | }, | ||
| 162 | -- LSP configuration | ||
| 163 | server = { | ||
| 164 | on_attach = on_attach, | ||
| 165 | vim.lsp.inlay_hint.enable(true), | ||
| 166 | default_settings = { | ||
| 167 | -- rust-analyzer language server configuration | ||
| 168 | ['rust-analyzer'] = { | ||
| 169 | }, | ||
| 170 | }, | ||
| 171 | }, | ||
| 172 | -- DAP configuration | ||
| 173 | dap = { | ||
| 174 | }, | ||
| 175 | } | ||
| 176 | |||
| 177 | lspconfig.harper_ls.setup { | ||
| 178 | on_attach = on_attach, | 159 | on_attach = on_attach, |
| 179 | capabilities = capabilities, | 160 | capabilities = capabilities, |
| 180 | settings = { | 161 | settings = { |
| @@ -199,12 +180,58 @@ return { | |||
| 199 | } | 180 | } |
| 200 | }, | 181 | }, |
| 201 | filetypes = { | 182 | filetypes = { |
| 202 | "markdown", "rust", "typescript", "typescriptreact", "javascript", "python", "c", "cpp", "ruby", "swift", "csharp", "toml", "lua", "gitcommit", "java", "html", "vimwiki" | 183 | "markdown", "rust", "typescript", "typescriptreact", "javascript", "python", "c", "cpp", "ruby", "swift", "csharp", "toml", "lua", "gitcommit", "java", "html", "vimwiki", "tex" |
| 184 | }, | ||
| 185 | root_dir = function(fname) | ||
| 186 | return vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1]) | ||
| 187 | end, | ||
| 188 | }) | ||
| 189 | |||
| 190 | -- ltex | ||
| 191 | vim.lsp.config("ltex", { | ||
| 192 | capabilities = capabilities, | ||
| 193 | on_attach = function(client, bufnr) | ||
| 194 | on_attach(client, bufnr) | ||
| 195 | require("ltex_extra").setup { | ||
| 196 | load_langs = { "en-GB" }, | ||
| 197 | init_check = true, | ||
| 198 | log_level = "warn", | ||
| 199 | } | ||
| 200 | end, | ||
| 201 | filetypes = { "bib", "gitcommit", "markdown", "org", "plaintex", "rst", "rnoweb", "tex", "pandoc", "quarto", "rmd", "context", "mail", "text" }, | ||
| 202 | settings = { | ||
| 203 | ltex = { | ||
| 204 | enabled = { "bibtex", "gitcommit", "markdown", "org", "tex", "restructuredtext", "rsweave", "latex", "quarto", "rmd", "context", "mail", "plaintext" } | ||
| 205 | } | ||
| 203 | } | 206 | } |
| 207 | }) | ||
| 208 | |||
| 209 | vim.g.rustaceanvim = { | ||
| 210 | -- Plugin configuration | ||
| 211 | tools = { | ||
| 212 | }, | ||
| 213 | -- LSP configuration | ||
| 214 | server = { | ||
| 215 | on_attach = on_attach, | ||
| 216 | vim.lsp.inlay_hint.enable(true), | ||
| 217 | default_settings = { | ||
| 218 | -- rust-analyzer language server configuration | ||
| 219 | ['rust-analyzer'] = { | ||
| 220 | }, | ||
| 221 | }, | ||
| 222 | }, | ||
| 223 | -- DAP configuration | ||
| 224 | dap = { | ||
| 225 | }, | ||
| 204 | } | 226 | } |
| 205 | end, | 227 | end, |
| 206 | }, | 228 | }, |
| 207 | { | 229 | { |
| 230 | "barreiroleo/ltex_extra.nvim", | ||
| 231 | ft = { "markdown", "tex" }, | ||
| 232 | dependencies = { "neovim/nvim-lspconfig" }, | ||
| 233 | }, | ||
| 234 | { | ||
| 208 | "j-hui/fidget.nvim", | 235 | "j-hui/fidget.nvim", |
| 209 | event = "VeryLazy", | 236 | event = "VeryLazy", |
| 210 | opts = { | 237 | opts = { |
| @@ -228,9 +255,32 @@ return { | |||
| 228 | }, | 255 | }, |
| 229 | { | 256 | { |
| 230 | "folke/lazydev.nvim", | 257 | "folke/lazydev.nvim", |
| 231 | ft = "lua", -- only load on lua files | 258 | ft = "lua", |
| 232 | }, | 259 | }, |
| 233 | { | 260 | { |
| 234 | 'fatih/vim-go' | 261 | 'fatih/vim-go' |
| 262 | }, | ||
| 263 | { | ||
| 264 | "danymat/neogen", | ||
| 265 | config = true, | ||
| 266 | opts = { | ||
| 267 | snippet_engine = "luasnip", | ||
| 268 | languages = { | ||
| 269 | python = { | ||
| 270 | template = { | ||
| 271 | annotation_convention = "reST", | ||
| 272 | } | ||
| 273 | } | ||
| 274 | } | ||
| 275 | } | ||
| 276 | }, | ||
| 277 | { | ||
| 278 | 'marcelofern/vale.nvim', | ||
| 279 | config = function() | ||
| 280 | require("vale").setup({ | ||
| 281 | bin = "/usr/bin/vale", | ||
| 282 | vale_config_path = "$HOME/.config/vale/.vale.ini", | ||
| 283 | }) | ||
| 284 | end, | ||
| 235 | } | 285 | } |
| 236 | } | 286 | } |
diff --git a/.config/nvim/lua/plugins/telescope.lua b/.config/nvim/lua/plugins/telescope.lua index 40c99a4..24f820d 100644 --- a/.config/nvim/lua/plugins/telescope.lua +++ b/.config/nvim/lua/plugins/telescope.lua | |||
| @@ -12,10 +12,16 @@ return { | |||
| 12 | "gbprod/yanky.nvim", | 12 | "gbprod/yanky.nvim", |
| 13 | }, | 13 | }, |
| 14 | config = function() | 14 | config = function() |
| 15 | local open_with_trouble = require("trouble.sources.telescope").open | ||
| 16 | |||
| 15 | require('telescope').setup({ | 17 | require('telescope').setup({ |
| 16 | defaults = { | 18 | defaults = { |
| 17 | path_display = { "truncate" }, | 19 | path_display = { "truncate" }, |
| 18 | prompt_prefix = " ", | 20 | prompt_prefix = " ", |
| 21 | mappings = { | ||
| 22 | i = { ["<leader>xt"] = open_with_trouble }, | ||
| 23 | n = { ["<leader>xt"] = open_with_trouble }, | ||
| 24 | }, | ||
| 19 | }, | 25 | }, |
| 20 | extensions = { | 26 | extensions = { |
| 21 | fzf = { | 27 | fzf = { |
| @@ -46,6 +52,10 @@ return { | |||
| 46 | map("n", "<leader>sw", require("telescope.builtin").grep_string, "🔭: current word") | 52 | map("n", "<leader>sw", require("telescope.builtin").grep_string, "🔭: current word") |
| 47 | map("n", "<leader>sg", require("telescope.builtin").live_grep, "🔭: live grep") | 53 | map("n", "<leader>sg", require("telescope.builtin").live_grep, "🔭: live grep") |
| 48 | map("n", "<leader>sd", require("telescope.builtin").diagnostics, "🔭: diagnostics") | 54 | map("n", "<leader>sd", require("telescope.builtin").diagnostics, "🔭: diagnostics") |
| 55 | map("n", "<leader>sc", function() | ||
| 56 | require("telescope.builtin").lsp_document_symbols({ symbols = 'function' }) | ||
| 57 | end, "🔭: lsp symbols (functions)") | ||
| 58 | |||
| 49 | map("n", "<leader>st", function() | 59 | map("n", "<leader>st", function() |
| 50 | require("telescope.builtin").spell_suggest(require("telescope.themes").get_cursor({ | 60 | require("telescope.builtin").spell_suggest(require("telescope.themes").get_cursor({ |
| 51 | prompt_title = "", | 61 | prompt_title = "", |
diff --git a/.config/nvim/spell/en.utf-8.add b/.config/nvim/spell/en.utf-8.add index 8374b5b..da95938 100644 --- a/.config/nvim/spell/en.utf-8.add +++ b/.config/nvim/spell/en.utf-8.add | |||
| @@ -129,3 +129,6 @@ Wayback | |||
| 129 | FarSight | 129 | FarSight |
| 130 | Zetalytics | 130 | Zetalytics |
| 131 | VirusTotal | 131 | VirusTotal |
| 132 | eSLD | ||
| 133 | NXDOMAIN | ||
| 134 | CrUX | ||
diff --git a/.config/task/taskrc b/.config/task/taskrc index 0f285da..725d9ff 100644 --- a/.config/task/taskrc +++ b/.config/task/taskrc | |||
| @@ -92,5 +92,5 @@ context.tablet.read=+@tablet | |||
| 92 | context.tablet.write=+@tablet | 92 | context.tablet.write=+@tablet |
| 93 | context.work.read=+@work | 93 | context.work.read=+@work |
| 94 | context.work.write=+@work | 94 | context.work.write=+@work |
| 95 | news.version=3.2.0 | 95 | news.version=3.4.0 |
| 96 | sync.local.server_dir=\/home\/yigit\/nextcloud\/virtuals\/taskwarrior\/ | 96 | sync.local.server_dir=\/home\/yigit\/nextcloud\/virtuals\/taskwarrior\/ |
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 461d8a4..dbc28f2 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf | |||
| @@ -77,7 +77,8 @@ set -g visual-activity on | |||
| 77 | #set -g status-right "#[fg=yellow]#(uptime | cut -d ',' -f 2-)" | 77 | #set -g status-right "#[fg=yellow]#(uptime | cut -d ',' -f 2-)" |
| 78 | 78 | ||
| 79 | # set -g default-terminal "tmux-256color" | 79 | # set -g default-terminal "tmux-256color" |
| 80 | set-option -ga terminal-overrides ",xterm-256color:RGB" | 80 | set-option -a terminal-features 'foot:RGB' |
| 81 | set-option -g focus-events on | ||
| 81 | 82 | ||
| 82 | ############# | 83 | ############# |
| 83 | # plugins # | 84 | # plugins # |
diff --git a/.config/user-dirs.dirs b/.config/user-dirs.dirs index 7723b1b..e13a65c 100644 --- a/.config/user-dirs.dirs +++ b/.config/user-dirs.dirs | |||
| @@ -13,4 +13,4 @@ XDG_PUBLICSHARE_DIR="$HOME/.local/share/publicshare" | |||
| 13 | XDG_MUSIC_DIR="$HOME/music" | 13 | XDG_MUSIC_DIR="$HOME/music" |
| 14 | XDG_PICTURES_DIR="$HOME/desk/pics" | 14 | XDG_PICTURES_DIR="$HOME/desk/pics" |
| 15 | XDG_VIDEOS_DIR="$HOME/desk/vids" | 15 | XDG_VIDEOS_DIR="$HOME/desk/vids" |
| 16 | XDG_SCREENSHOTS_DIR="$HOME/pics/screenshots" | 16 | XDG_SCREENSHOTS_DIR="$HOME/desk/pics/screenshots" |
diff --git a/.config/waybar/config.jsonc b/.config/waybar/config.jsonc index 373ac78..0736e43 100644 --- a/.config/waybar/config.jsonc +++ b/.config/waybar/config.jsonc | |||
| @@ -29,11 +29,14 @@ | |||
| 29 | // "battery#bat2", | 29 | // "battery#bat2", |
| 30 | "clock", | 30 | "clock", |
| 31 | "privacy", | 31 | "privacy", |
| 32 | "hyprland/language", | ||
| 32 | "tray" | 33 | "tray" |
| 33 | ], | 34 | ], |
| 34 | // Modules configuration | 35 | // Modules configuration |
| 35 | "hyprland/window": { | 36 | "hyprland/language": { |
| 36 | "max-length": 40 | 37 | "format": "{}", |
| 38 | "format-en-colemak": "EN", | ||
| 39 | "format-tr": "TR" | ||
| 37 | }, | 40 | }, |
| 38 | "hyprland/workspaces": { | 41 | "hyprland/workspaces": { |
| 39 | "disable-scroll": true, | 42 | "disable-scroll": true, |
| @@ -61,6 +64,9 @@ | |||
| 61 | "default": "" | 64 | "default": "" |
| 62 | } | 65 | } |
| 63 | }, | 66 | }, |
| 67 | "hyprland/window": { | ||
| 68 | "max-length": 40 | ||
| 69 | }, | ||
| 64 | "keyboard-state": { | 70 | "keyboard-state": { |
| 65 | "numlock": true, | 71 | "numlock": true, |
| 66 | "capslock": true, | 72 | "capslock": true, |
| @@ -76,7 +82,10 @@ | |||
| 76 | "sway/scratchpad": { | 82 | "sway/scratchpad": { |
| 77 | "format": "{icon} {count}", | 83 | "format": "{icon} {count}", |
| 78 | "show-empty": false, | 84 | "show-empty": false, |
| 79 | "format-icons": ["", ""], | 85 | "format-icons": [ |
| 86 | "", | ||
| 87 | "" | ||
| 88 | ], | ||
| 80 | "tooltip": true, | 89 | "tooltip": true, |
| 81 | "tooltip-format": "{app}: {title}" | 90 | "tooltip-format": "{app}: {title}" |
| 82 | }, | 91 | }, |
| @@ -119,7 +128,7 @@ | |||
| 119 | }, | 128 | }, |
| 120 | "clock": { | 129 | "clock": { |
| 121 | "format": "{:%H:%M | %B %d, %A}", | 130 | "format": "{:%H:%M | %B %d, %A}", |
| 122 | "tooltip-format": "<tt><small>{calendar}</small></tt>", | 131 | "tooltip-format": "<tt><small>{calendar}</small></tt>" |
| 123 | }, | 132 | }, |
| 124 | "cpu": { | 133 | "cpu": { |
| 125 | "format": "{usage}% ", | 134 | "format": "{usage}% ", |
| @@ -134,12 +143,26 @@ | |||
| 134 | "critical-threshold": 80, | 143 | "critical-threshold": 80, |
| 135 | // "format-critical": "{temperatureC}°C {icon}", | 144 | // "format-critical": "{temperatureC}°C {icon}", |
| 136 | "format": "{temperatureC}°C {icon}", | 145 | "format": "{temperatureC}°C {icon}", |
| 137 | "format-icons": ["", "", ""] | 146 | "format-icons": [ |
| 147 | "", | ||
| 148 | "", | ||
| 149 | "" | ||
| 150 | ] | ||
| 138 | }, | 151 | }, |
| 139 | "backlight": { | 152 | "backlight": { |
| 140 | // "device": "acpi_video1", | 153 | // "device": "acpi_video1", |
| 141 | "format": "{percent}% {icon}", | 154 | "format": "{percent}% {icon}", |
| 142 | "format-icons": ["", "", "", "", "", "", "", "", ""] | 155 | "format-icons": [ |
| 156 | "", | ||
| 157 | "", | ||
| 158 | "", | ||
| 159 | "", | ||
| 160 | "", | ||
| 161 | "", | ||
| 162 | "", | ||
| 163 | "", | ||
| 164 | "" | ||
| 165 | ] | ||
| 143 | }, | 166 | }, |
| 144 | "battery": { | 167 | "battery": { |
| 145 | "states": { | 168 | "states": { |
| @@ -154,7 +177,13 @@ | |||
| 154 | "format-alt": "{time} {icon}", | 177 | "format-alt": "{time} {icon}", |
| 155 | // "format-good": "", // An empty format will hide the module | 178 | // "format-good": "", // An empty format will hide the module |
| 156 | // "format-full": "", | 179 | // "format-full": "", |
| 157 | "format-icons": ["", "", "", "", ""] | 180 | "format-icons": [ |
| 181 | "", | ||
| 182 | "", | ||
| 183 | "", | ||
| 184 | "", | ||
| 185 | "" | ||
| 186 | ] | ||
| 158 | }, | 187 | }, |
| 159 | "battery#bat2": { | 188 | "battery#bat2": { |
| 160 | "bat": "BAT2" | 189 | "bat": "BAT2" |
| @@ -186,7 +215,11 @@ | |||
| 186 | "phone": "", | 215 | "phone": "", |
| 187 | "portable": "", | 216 | "portable": "", |
| 188 | "car": "", | 217 | "car": "", |
| 189 | "default": [" ", " ", " "] | 218 | "default": [ |
| 219 | " ", | ||
| 220 | " ", | ||
| 221 | " " | ||
| 222 | ] | ||
| 190 | }, | 223 | }, |
| 191 | "on-click": "pavucontrol" | 224 | "on-click": "pavucontrol" |
| 192 | }, | 225 | }, |
| @@ -241,7 +274,7 @@ | |||
| 241 | "custom/focus": { | 274 | "custom/focus": { |
| 242 | "exec": "/home/yigit/.config/polybar/scripts/focus", | 275 | "exec": "/home/yigit/.config/polybar/scripts/focus", |
| 243 | "interval": 5, | 276 | "interval": 5, |
| 244 | "format": "{}" | 277 | "format": "{}", |
| 278 | "escape": true | ||
| 245 | } | 279 | } |
| 246 | } | 280 | } |
| 247 | |||
diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 7db875f..231798a 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css | |||
| @@ -1,14 +1,14 @@ | |||
| 1 | @import "latte.css"; | 1 | @import "latte.css"; |
| 2 | 2 | ||
| 3 | * { | 3 | * { |
| 4 | border: none; | 4 | border: none; |
| 5 | border-radius: 0; | 5 | border-radius: 0; |
| 6 | font-family: FontAwesome, scientifica; | 6 | font-family: FontAwesome, scientifica; |
| 7 | font-size: 14px; | 7 | font-size: 14px; |
| 8 | min-height: 0; | 8 | min-height: 0; |
| 9 | box-shadow: none; | 9 | box-shadow: none; |
| 10 | text-shadow: none; | 10 | text-shadow: none; |
| 11 | transition-duration: 0s; | 11 | transition-duration: 0s; |
| 12 | color: @text; | 12 | color: @text; |
| 13 | } | 13 | } |
| 14 | 14 | ||
| @@ -87,12 +87,12 @@ button:hover { | |||
| 87 | } | 87 | } |
| 88 | 88 | ||
| 89 | /* If workspaces is the leftmost module, omit left margin */ | 89 | /* If workspaces is the leftmost module, omit left margin */ |
| 90 | .modules-left > widget:first-child > #workspaces { | 90 | .modules-left>widget:first-child>#workspaces { |
| 91 | margin-left: 0; | 91 | margin-left: 0; |
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | /* If workspaces is the rightmost module, omit right margin */ | 94 | /* If workspaces is the rightmost module, omit right margin */ |
| 95 | .modules-right > widget:last-child > #workspaces { | 95 | .modules-right>widget:last-child>#workspaces { |
| 96 | margin-right: 0; | 96 | margin-right: 0; |
| 97 | } | 97 | } |
| 98 | 98 | ||
| @@ -109,15 +109,16 @@ tooltip.background { | |||
| 109 | background-color: #ffffff; | 109 | background-color: #ffffff; |
| 110 | } | 110 | } |
| 111 | 111 | ||
| 112 | #battery.charging, #battery.plugged { | 112 | #battery.charging, |
| 113 | #battery.plugged { | ||
| 113 | background-color: #26A65B; | 114 | background-color: #26A65B; |
| 114 | } | 115 | } |
| 115 | 116 | ||
| 116 | @keyframes blink { | 117 | @keyframes blink { |
| 117 | to { | 118 | to { |
| 118 | background-color: #ffffff; | 119 | background-color: #ffffff; |
| 119 | color: #000000; | 120 | color: #000000; |
| 120 | } | 121 | } |
| 121 | } | 122 | } |
| 122 | 123 | ||
| 123 | /* Using steps() instead of linear as a timing function to limit cpu usage */ | 124 | /* Using steps() instead of linear as a timing function to limit cpu usage */ |
| @@ -200,11 +201,11 @@ label:focus { | |||
| 200 | background-color: @sapphire; | 201 | background-color: @sapphire; |
| 201 | } | 202 | } |
| 202 | 203 | ||
| 203 | #tray > .passive { | 204 | #tray>.passive { |
| 204 | -gtk-icon-effect: dim; | 205 | -gtk-icon-effect: dim; |
| 205 | } | 206 | } |
| 206 | 207 | ||
| 207 | #tray > .needs-attention { | 208 | #tray>.needs-attention { |
| 208 | -gtk-icon-effect: highlight; | 209 | -gtk-icon-effect: highlight; |
| 209 | background-color: @red; | 210 | background-color: @red; |
| 210 | } | 211 | } |
| @@ -239,10 +240,9 @@ label:focus { | |||
| 239 | } | 240 | } |
| 240 | 241 | ||
| 241 | #language { | 242 | #language { |
| 242 | background: #00b093; | 243 | background: #89b4fa; |
| 243 | padding: 0 5px; | 244 | padding: 0 10px; |
| 244 | margin: 0 5px; | 245 | min-width: 12px; |
| 245 | min-width: 16px; | ||
| 246 | } | 246 | } |
| 247 | 247 | ||
| 248 | #keyboard-state { | 248 | #keyboard-state { |
| @@ -252,11 +252,11 @@ label:focus { | |||
| 252 | min-width: 16px; | 252 | min-width: 16px; |
| 253 | } | 253 | } |
| 254 | 254 | ||
| 255 | #keyboard-state > label { | 255 | #keyboard-state>label { |
| 256 | padding: 0 5px; | 256 | padding: 0 5px; |
| 257 | } | 257 | } |
| 258 | 258 | ||
| 259 | #keyboard-state > label.locked { | 259 | #keyboard-state>label.locked { |
| 260 | background: rgba(0, 0, 0, 0.2); | 260 | background: rgba(0, 0, 0, 0.2); |
| 261 | } | 261 | } |
| 262 | 262 | ||
diff --git a/.local/bin/sentences b/.local/bin/sentences index 146fd2c..750072e 100755 --- a/.local/bin/sentences +++ b/.local/bin/sentences | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | use strict; | 3 | use strict; |
| 4 | 4 | ||
| 5 | my $pont = qr{[.!?]+}; ## punctuation | 5 | my $pont = qr{[.!?]+}; ## punctuation |
| 6 | my $abrev = qr{\b(?:Pr|Dr|Mr|[A-Z]|i\.e|e\.g|et al|etc|p|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\.}; ## abbreviations | 6 | my $abrev = qr{\b(?:Pr|Dr|Mr|[A-Z]|i\.e|e\.g|et al|etc|p|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|vs)\.}; ## abbreviations |
| 7 | my $header = qr{(=+ .*? =+)}; | 7 | my $header = qr{(=+ .*? =+)}; |
| 8 | 8 | ||
| 9 | $/ = ""; | 9 | $/ = ""; |
diff --git a/.local/bin/spliff b/.local/bin/spliff index 3767bac..495fa22 100755 --- a/.local/bin/spliff +++ b/.local/bin/spliff | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | #!/usr/bin/env zsh | 1 | #!/usr/bin/env bash |
| 2 | 2 | ||
| 3 | PDF=$1 | 3 | PDF=$1 |
| 4 | OUTPUT="${PDF:r}_spliff.pdf" | 4 | OUTPUT="${PDF:r}_spliff.pdf" |
