This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| #include <concepts> | |
| #include <cstddef> | |
| #include <functional> | |
| #include <type_traits> | |
| #include <utility> | |
| /// Right-fold reduce N successive invocations of the given object. | |
| /// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| eval "$(/opt/homebrew/bin/brew shellenv)" | |
| # Fuzzy Finder | |
| source <(fzf --zsh) | |
| # VCPKG | |
| export VCPKG_ROOT="$HOME/.vcpkg" | |
| export VCPKG_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" | |
| # LLVM, GCC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias ls='eza' | |
| alias la='eza -a' | |
| alias ll='eza -l' | |
| function upm() | |
| { | |
| # Homebrew | |
| brew update | |
| brew upgrade | |
| brew upgrade --cask --greedy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "theme": "Kanagawa Wave", | |
| "icon_theme": "JetBrains New UI Icons (Dark)", | |
| // UI Font | |
| "ui_font_family": "Inter", | |
| "ui_font_size": 14, | |
| // Buffer Font | |
| "buffer_font_family": "JetBrains Mono", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| theme = "github_dark_high_contrast" | |
| [editor] | |
| true-color = true | |
| line-number = "absolute" | |
| mouse = true | |
| auto-completion = true | |
| [editor.cursor-shape] | |
| insert = "bar" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Theme | |
| theme = Github-Dark-High-Contrast | |
| # Font | |
| font-family = "JetBrains Mono" | |
| font-size = 12 | |
| font-thicken | |
| # Window | |
| window-padding-x = 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Wezterm configuration for macOS | |
| local wezterm = require 'wezterm' | |
| local config = {} | |
| if wezterm.config_builder then | |
| config = wezterm.config_builder() | |
| end | |
| -- Theme | |
| config.color_scheme = 'Catppuccin Mocha' |