Last active
July 6, 2025 12:42
-
-
Save brianpooe/f40ad5206de8f4c5d012d76b1302f4ac to your computer and use it in GitHub Desktop.
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
| # Nord Theme for Alacritty Terminal Emulator | |
| # Based on the Nord Color Palette by Arctic Ice Studio | |
| # https://github.com/nordtheme/nord | |
| # Import additional configuration files | |
| # import = [ | |
| # "~/.config/alacritty/keybindings.toml" | |
| # ] | |
| # Working directory (optional) | |
| # working_directory = "/Users/username" | |
| [general] | |
| live_config_reload = true | |
| [window] | |
| opacity = 0.95 | |
| startup_mode = "Windowed" | |
| title = "Alacritty" | |
| decorations = "full" | |
| [window.padding] | |
| x = 8 | |
| y = 8 | |
| [window.class] | |
| instance = "Alacritty" | |
| general = "Alacritty" | |
| [window.dimensions] | |
| columns = 120 | |
| lines = 35 | |
| [scrolling] | |
| history = 10000 | |
| multiplier = 3 | |
| [font] | |
| size = 13.0 | |
| [font.normal] | |
| family = "JetBrains Mono" | |
| style = "Regular" | |
| [font.bold] | |
| family = "JetBrains Mono" | |
| style = "Bold" | |
| [font.italic] | |
| family = "JetBrains Mono" | |
| style = "Italic" | |
| [font.bold_italic] | |
| family = "JetBrains Mono" | |
| style = "Bold Italic" | |
| [font.offset] | |
| x = 0 | |
| y = 1 | |
| [font.glyph_offset] | |
| x = 0 | |
| y = 0 | |
| [colors.primary] | |
| background = "#2e3440" # nord0 - Polar Night | |
| foreground = "#d8dee9" # nord4 - Snow Storm | |
| dim_foreground = "#a5abb6" | |
| bright_foreground = "#eceff4" # nord6 - Snow Storm | |
| [colors.cursor] | |
| text = "#2e3440" # nord0 | |
| cursor = "#d8dee9" # nord4 | |
| [colors.vi_mode_cursor] | |
| text = "#2e3440" # nord0 | |
| cursor = "#d8dee9" # nord4 | |
| [colors.selection] | |
| text = "CellForeground" | |
| background = "#4c566a" # nord3 | |
| [colors.search.matches] | |
| foreground = "#2e3440" # nord0 | |
| background = "#88c0d0" # nord8 - Frost | |
| [colors.search.focused_match] | |
| foreground = "#2e3440" # nord0 | |
| background = "#5e81ac" # nord10 - Frost | |
| [colors.hints.start] | |
| foreground = "#2e3440" # nord0 | |
| background = "#ebcb8b" # nord13 - Aurora | |
| [colors.hints.end] | |
| foreground = "#2e3440" # nord0 | |
| background = "#a3be8c" # nord14 - Aurora | |
| [colors.line_indicator] | |
| foreground = "None" | |
| background = "None" | |
| [colors.normal] | |
| black = "#3b4252" # nord1 | |
| red = "#bf616a" # nord11 - Aurora | |
| green = "#a3be8c" # nord14 - Aurora | |
| yellow = "#ebcb8b" # nord13 - Aurora | |
| blue = "#81a1c1" # nord9 - Frost | |
| magenta = "#b48ead" # nord15 - Aurora | |
| cyan = "#88c0d0" # nord8 - Frost | |
| white = "#e5e9f0" # nord5 - Snow Storm | |
| [colors.bright] | |
| black = "#4c566a" # nord3 | |
| red = "#bf616a" # nord11 - Aurora | |
| green = "#a3be8c" # nord14 - Aurora | |
| yellow = "#ebcb8b" # nord13 - Aurora | |
| blue = "#81a1c1" # nord9 - Frost | |
| magenta = "#b48ead" # nord15 - Aurora | |
| cyan = "#8fbcbb" # nord7 - Frost | |
| white = "#eceff4" # nord6 - Snow Storm | |
| [colors.dim] | |
| black = "#373e4d" | |
| red = "#94545d" | |
| green = "#809575" | |
| yellow = "#b29e75" | |
| blue = "#68809a" | |
| magenta = "#8c738c" | |
| cyan = "#6d96a5" | |
| white = "#aeb3bb" | |
| [bell] | |
| animation = "EaseOutExpo" | |
| duration = 0 | |
| color = "#bf616a" # nord11 | |
| [cursor] | |
| blink_interval = 750 | |
| unfocused_hollow = true | |
| thickness = 0.15 | |
| [cursor.style] | |
| shape = "Block" | |
| blinking = "Off" | |
| [cursor.vi_mode_style] | |
| shape = "Block" | |
| blinking = "Off" | |
| [mouse] | |
| hide_when_typing = true | |
| [[mouse.bindings]] | |
| mouse = "Middle" | |
| action = "PasteSelection" | |
| # Shell configuration (optional) | |
| # [shell] | |
| # program = "/bin/zsh" | |
| # args = ["--login"] | |
| # Key bindings (optional - uncomment and customize as needed) | |
| # [[keyboard.bindings]] | |
| # key = "V" | |
| # mods = "Command" | |
| # action = "Paste" | |
| # [[keyboard.bindings]] | |
| # key = "C" | |
| # mods = "Command" | |
| # action = "Copy" | |
| # [[keyboard.bindings]] | |
| # key = "Q" | |
| # mods = "Command" | |
| # action = "Quit" | |
| # [[keyboard.bindings]] | |
| # key = "N" | |
| # mods = "Command" | |
| # action = "SpawnNewInstance" | |
| # [[keyboard.bindings]] | |
| # key = "Return" | |
| # mods = "Command" | |
| # action = "ToggleFullscreen" | |
| [debug] | |
| render_timer = false | |
| persistent_logging = false | |
| log_level = "Warn" | |
| print_events = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment