my nix dotfiles
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 99 lines 2.8 kB view raw
1{ pkgs, ... }: 2{ 3 settings = { 4 term = "xterm-256color"; 5 font-family = "SF Mono"; 6 font-size = 15.0; 7 window-padding-x = 10; 8 window-padding-y = 10; 9 window-padding-balance = true; 10 window-theme = "auto"; 11 theme = "light:icy_light,dark:icy_dusk"; 12 adjust-cell-height = 10; 13 macos-option-as-alt = "left"; 14 macos-titlebar-style = "tabs"; 15 16 # tmux-style split and pane bindings 17 # splits: ctrl+q > c (vsplit) / ctrl+q > " (hsplit) — mirrors tmux prefix 18 keybind = [ 19 "ctrl+q>c=new_split:right" 20 "ctrl+q>shift+apostrophe=new_split:down" 21 22 # pane navigation — identical to tmux M-y/o/e/n 23 "alt+y=goto_split:left" 24 "alt+o=goto_split:right" 25 "alt+e=goto_split:up" 26 "alt+n=goto_split:down" 27 28 # pane resize — identical to tmux M-arrow 29 "alt+up=resize_split:up,5" 30 "alt+down=resize_split:down,5" 31 "alt+left=resize_split:left,5" 32 "alt+right=resize_split:right,5" 33 34 # close pane — ctrl+q > x 35 "ctrl+q>x=close_surface" 36 37 # new tab — ctrl+q > v 38 "ctrl+q>v=new_tab" 39 40 # prev/next tab — ctrl+alt+y/o (mirrors tmux C-M-y / C-M-o) 41 "ctrl+alt+y=previous_tab" 42 "ctrl+alt+o=next_tab" 43 ]; 44 }; 45 46 themes = { 47 icy_dusk = { 48 background = "100f0f"; 49 foreground = "fff6e3"; 50 cursor-color = "509c93"; 51 selection-background = "509c93"; 52 selection-foreground = "fff6e3"; 53 palette = [ 54 "0=2a261f" # Black (Normal) 55 "1=db7070" # Red (Normal) 56 "2=7c9f4b" # Green (Normal) 57 "3=d69822" # Yellow (Normal) 58 "4=509c93" # Blue (Normal) 59 "5=b870ce" # Magenta (Normal) 60 "6=509c93" # Cyan (Normal) 61 "7=fff6e3" # White (Normal) 62 "8=4a443d" # Black (Bright) 63 "9=c66666" # Red (Bright) 64 "10=6d8b42" # Green (Bright) 65 "11=4a443d" # Yellow (Bright) 66 "12=6b635a" # Blue (Bright) 67 "13=a262b5" # Magenta (Bright) 68 "14=43827b" # Cyan (Bright) 69 "15=fff9eb" # White (Bright) 70 ]; 71 }; 72 73 icy_light = { 74 background = "fffdf5"; 75 foreground = "4a443d"; 76 cursor-color = "509c93"; 77 selection-background = "fceccc"; 78 selection-foreground = "4a443d"; 79 palette = [ 80 "0=4a443d" # Black (Normal) 81 "1=db7070" # Red (Normal) 82 "2=7c9f4b" # Green (Normal) 83 "3=d69822" # Yellow (Normal) 84 "4=6587bf" # Blue (Normal) 85 "5=b870ce" # Magenta (Normal) 86 "6=509c93" # Cyan (Normal) 87 "7=4a443d" # White (Normal) 88 "8=776e63" # Black (Bright) 89 "9=c66666" # Red (Bright) 90 "10=6d8b42" # Green (Bright) 91 "11=d8cbbe" # Yellow (Bright) 92 "12=776e63" # Blue (Bright) 93 "13=a262b5" # Magenta (Bright) 94 "14=43827b" # Cyan (Bright) 95 "15=2a261f" # White (Bright) 96 ]; 97 }; 98 }; 99}