aboutsummaryrefslogtreecommitdiff
path: root/programs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-09-26 16:56:36 +0100
committerAkshay <[email protected]>2021-09-26 16:56:36 +0100
commit5cdb4e421a809de51c3ebe8404e50d732721238b (patch)
tree73b71617c41b3e13edbf26035e821bb884d30441 /programs
init
Diffstat (limited to 'programs')
-rw-r--r--programs/bash.nix88
-rw-r--r--programs/chromium.nix18
-rw-r--r--programs/default.nix51
-rw-r--r--programs/feh.nix14
-rw-r--r--programs/fzf.nix7
-rw-r--r--programs/git.nix48
-rw-r--r--programs/htop.nix11
-rw-r--r--programs/init.vim191
-rw-r--r--programs/neovim.nix45
-rw-r--r--programs/readline.nix22
-rw-r--r--programs/st/config.h507
-rw-r--r--programs/tmux.nix85
-rw-r--r--programs/zathura.nix37
13 files changed, 1124 insertions, 0 deletions
diff --git a/programs/bash.nix b/programs/bash.nix
new file mode 100644
index 0000000..cbba2de
--- /dev/null
+++ b/programs/bash.nix
@@ -0,0 +1,88 @@
1{ config
2, pkgs
3, ...
4}:
5
6{
7 programs.bash = {
8 enable = true;
9 historyControl = [ "erasedups" ];
10 historyFile = "\$HOME/.bash_history";
11 historyFileSize = 2000;
12 historyIgnore = [ "ls" "exit" "kill" ];
13 historySize = 1000;
14 shellAliases = {
15 "..." = "cd -- ../..";
16 grep = "grep --color=auto";
17 l = "ls -CF";
18 la = "ls -A";
19 ll = "ls -alF";
20 ls = "ls -F --color=always";
21 o = "xdg-open";
22 rless = "less -r";
23 tmux = "tmux -u";
24 tree = "tree -C";
25 vim = "nvim";
26 tb = "nc termbin.com 9999";
27
28 # git aliases
29 gb = "git branch -v";
30 gc = "git commit --verbose";
31 gd = "git diff --minimal";
32 ggp = "git push";
33 gl = "git log -p --abbrev-commit --pretty=medium";
34 glo = "git log --pretty=oneline --abbrev-commit";
35 gst = "git status --short";
36 };
37 shellOptions = [
38 "histappend"
39 "autocd"
40 "globstar"
41 "checkwinsize"
42 "cdspell"
43 "dirspell"
44 "expand_aliases"
45 "dotglob"
46 "gnu_errfmt"
47 "histreedit"
48 "nocasematch"
49 ];
50 sessionVariables = {
51 PROMPT_CHAR = "λ";
52 PROMPT_CHAR_COLOR = "cyan";
53 PROMPT_CHAR_ROOT = "#";
54 PROMPT_CHAR_ROOT_COLOR = "magenta";
55 SHORTEN_CWD = 1;
56 CWD_COLOR = "white";
57 EXPAND_TILDE = 0;
58 GIT_CLEAN = "·";
59 GIT_CLEAN_COLOR = "green";
60 GIT_WT_MODIFIED = "×";
61 GIT_WT_MODIFIED_COLOR = "red";
62 GIT_INDEX_MODIFIED = "±";
63 GIT_INDEX_MODIFIED_COLOR = "yellow";
64 BRANCH_COLOR = "bright black";
65 COMMIT_COLOR = "green";
66 PF_INFO = "ascii title os kernel uptime pkgs shell ";
67 PF_SEP = " ";
68 PF_COL1 = 7;
69 PF_COL2 = 7;
70 PF_COL3 = 6;
71 PF_ALIGN = "9";
72 PF_ASCII = "nixos";
73 _JAVA_AWT_WM_NONREPARENTING = 1;
74 TERM = "xterm-256color-italic";
75 EDITOR = "nvim";
76 MANPAGER = "nvim +Man!";
77 GPG_TTY = "\$(tty)";
78 };
79 initExtra = ''
80 [ -f $HOME/.github ] && . $HOME/.github
81 [ -f ~/.bash_aliases ] && . ~/.bash_aliases
82 [ -f ~/.fzf.bash ] && source ~/.fzf.bash
83 eval "$(direnv hook bash)"
84 export PS1='\n$(pista)'
85 export PATH=$PATH:"$HOME/scripts"
86 '';
87 };
88}
diff --git a/programs/chromium.nix b/programs/chromium.nix
new file mode 100644
index 0000000..975e721
--- /dev/null
+++ b/programs/chromium.nix
@@ -0,0 +1,18 @@
1{ config
2, pkgs
3, ...
4}:
5
6{
7 programs.chromium = {
8 enable = true;
9 extensions = [
10 "gcbommkclmclpchllfjekcdonpmejbdp" # https everywhere
11 "cjpalhdlnbpafiamejdnhcphjbkeiagm" # ublock origin
12 "aapbdbdomjkkjkaonfhkkikfgjllcleb" # translate
13 "aghfnjkcakhmadgdomlmlhhaocbkloab" # just black
14 "pobhoodpcipjmedfenaigbeloiidbflp" # minimal twitter
15 "ennpfpdlaclocpomkiablnmbppdnlhoh" # rust search extension
16 ];
17 };
18}
diff --git a/programs/default.nix b/programs/default.nix
new file mode 100644
index 0000000..ba67638
--- /dev/null
+++ b/programs/default.nix
@@ -0,0 +1,51 @@
1{ config
2, pkgs
3, theme
4, ...
5}:
6
7{
8
9 imports = [
10 ./bash.nix
11 ./chromium.nix
12 ./feh.nix
13 ./git.nix
14 ./htop.nix
15 ./neovim.nix
16 ./readline.nix
17 ./tmux.nix
18 ./zathura.nix
19 ];
20
21 programs = {
22 msmtp.enable = true;
23 home-manager.enable = true;
24 mbsync.enable = true;
25 direnv = {
26 enable = true;
27 enableBashIntegration = true;
28 nix-direnv = {
29 enable = true;
30 useFlakes = true;
31 };
32 };
33 autojump = {
34 enable = true;
35 enableBashIntegration = true;
36 };
37 password-store = {
38 enable = true;
39 settings = {
40 PASSWORD_STORE_DIR = ''$HOME/.password-store'';
41 PASSWORD_STORE_KEY = "21532E14CF0840E438C36DED7164B95E9556624A";
42 PASSWORD_STORE_CLIP_TIME = "60";
43 };
44 };
45 nix-index = {
46 enable = true;
47 enableBashIntegration = true;
48 };
49 gpg.enable = true;
50 };
51}
diff --git a/programs/feh.nix b/programs/feh.nix
new file mode 100644
index 0000000..2e15fe4
--- /dev/null
+++ b/programs/feh.nix
@@ -0,0 +1,14 @@
1{ config
2, pkgs
3, ...
4}:
5
6{
7 programs.feh = {
8 enable = true;
9 buttons = {
10 zoom_in = "C-5";
11 zoom_out = "C-4";
12 };
13 };
14}
diff --git a/programs/fzf.nix b/programs/fzf.nix
new file mode 100644
index 0000000..b02a07c
--- /dev/null
+++ b/programs/fzf.nix
@@ -0,0 +1,7 @@
1{
2 enable = true;
3 enableBashIntegration = true;
4 defaultOptions = ["--height 40%" "--layout=reverse" "--color=bw"];
5 defaultCommand = "rg -L --files";
6 changeDirWidgetCommand = "find . -type d";
7}
diff --git a/programs/git.nix b/programs/git.nix
new file mode 100644
index 0000000..1a2bc72
--- /dev/null
+++ b/programs/git.nix
@@ -0,0 +1,48 @@
1{ config
2, pkgs
3, theme
4, ...
5}:
6
7with theme;
8{
9 programs.git = {
10 enable = true;
11 ignores = [ ".envrc" ];
12 userEmail = "[email protected]";
13 userName = "Akshay";
14 delta = {
15 enable = true;
16 options = {
17 features = "decorations labels";
18 syntax-theme = "none";
19 zero-style = "8";
20 navigate = "true";
21 keep-plus-minus-markers = "true";
22 decorations = {
23 file-decoration-style = "none";
24 whitespace-error-style = "22 reverse";
25 minus-style = "${base08}";
26 minus-emph-style = "${base08} bold";
27 plus-style = "${base0B}";
28 plus-emph-style = "${base0B} bold";
29 file-style = "7 italic";
30 hunk-header-style = "7";
31 hunk-header-decoration-style = "8 ul";
32 };
33 labels = {
34 file-modified-label = " MODIFIED ";
35 file-removed-label = " REMOVED ";
36 file-added-label = " ADDED ";
37 file-renamed-label = " RENAMED ";
38 };
39 };
40 };
41 extraConfig = {
42 commit.verbose = true;
43 core = {
44 hooksPath = "/home/np/.hooks";
45 };
46 };
47 };
48}
diff --git a/programs/htop.nix b/programs/htop.nix
new file mode 100644
index 0000000..a48b70c
--- /dev/null
+++ b/programs/htop.nix
@@ -0,0 +1,11 @@
1{ config
2, pkgs
3, ...
4}:
5
6{
7 programs.htop = {
8 enable = true;
9 settings.color_scheme = 1; # monochrome
10 };
11}
diff --git a/programs/init.vim b/programs/init.vim
new file mode 100644
index 0000000..38e5eef
--- /dev/null
+++ b/programs/init.vim
@@ -0,0 +1,191 @@
1let &t_ZM = "\e[3m"
2
3call plug#begin('~/.local/share/nvim/plugged')
4
5" syntax and friends
6Plug 'neovimhaskell/haskell-vim', {'for': ['haskell', 'cabal']}
7Plug 'elmcast/elm-vim'
8
9" my stuff
10Plug 'git@ferrn:vim/vim-colors-plain'
11Plug 'git@ferrn:vim/better-text-objs'
12
13call plug#end()
14
15
16" augroups
17
18augroup plaintext
19 autocmd!
20 autocmd FileType text,markdown setlocal ts=2 sts=2 sw=2 expandtab textwidth=60
21augroup END
22
23augroup webdev
24 autocmd!
25 autocmd FileType less,css,html,js?,ts? setlocal ts=2 sts=2 sw=2 expandtab
26 autocmd FileType less,css,html nnoremap <Leader>s viB:sort<cr>
27augroup END
28
29augroup lisp_stuff
30 autocmd!
31 autocmd BufReadPost *.lisp set filetype=scheme
32augroup END
33
34augroup yankhl
35 autocmd!
36 autocmd TextYankPost * silent! lua require'vim.highlight'.on_yank()
37augroup END
38
39augroup restorecursor
40 autocmd BufReadPost *
41 \ if line("'\"") > 1 && line("'\"") <= line("$") |
42 \ execute "normal! g`\"" |
43 \ endif
44augroup END
45
46augroup fzfstatus
47 if has('nvim') && !exists('g:fzf_layout')
48 autocmd! FileType fzf
49 autocmd FileType fzf set laststatus=0 noshowmode noruler
50 \| autocmd BufLeave <buffer> set laststatus=2 showmode ruler
51 endif
52augroup END
53
54augroup completions
55 " Use completion-nvim in every buffer
56 autocmd!
57 autocmd BufEnter * lua require'completion'.on_attach()
58augroup END
59
60" general settings
61set nobackup
62set nowritebackup
63set noswapfile " get rid of swapfiles everywhere
64set dir=/tmp
65
66syntax on
67
68set omnifunc=syntaxcomplete#Complete
69set completefunc=LanguageClient#complete
70set list
71filetype off
72filetype plugin indent on
73set laststatus=2
74set nowrap
75set noshowmode
76set listchars=tab:┊\ ,nbsp:␣,trail:·,extends:>,precedes:<
77set fillchars=vert:\│,stl:\ ,stlnc:\
78set ignorecase
79set smartcase
80set sidescroll=40
81set incsearch
82set hlsearch
83set undofile
84set undodir=~/tmp
85set path+=**
86set backspace=indent,eol,start
87set hidden
88set wildmenu
89set complete=.,w,b,i,u,t,
90set background=dark
91set mouse=a
92set conceallevel=0
93set nonumber
94set grepprg=rg\ --vimgrep\ --no-heading
95set grepformat=%f:%l:%c:%m,%f:%l:%m
96set cmdheight=2
97set shortmess+=c
98set updatetime=300
99set signcolumn=yes
100set inccommand=split
101set showmatch
102set diffopt+=vertical
103set completeopt=menuone,noinsert,noselect
104set exrc
105
106let g:netrw_browsex_viewer= "xdg-open"
107
108colorscheme plain
109
110set shiftwidth=4 " indent = 4 spaces
111set expandtab
112set tabstop=4 " tab = 4 spaces
113set softtabstop=4 " backspace through spaces
114
115" Functions
116function! GetTabber() " a lil function that integrates well with Tabular.vim
117 let c = nr2char(getchar())
118 :execute 'Tabularize /' . c
119endfunction
120
121" Ugh
122command! WQ wq
123command! Wq wq
124command! Wqa wqa
125command! WQa wqa
126command! W w
127command! Q q
128
129" abbreviations
130abclear
131iab #i #include
132iab #d #define
133cab dst put =strftime('%d %a, %b %Y')<cr>
134cab vg vimgrep
135cab vga vimgrepadd
136cab bfd bufdo
137
138" man pages
139let g:ft_man_open_mode = 'tab'
140
141let g:gitgutter_override_sign_column_highlight = 0
142let g:gitgutter_sign_added = '+'
143let g:gitgutter_sign_modified = '~'
144let g:gitgutter_sign_removed = '-'
145let g:gitgutter_sign_removed_first_line = '-'
146let g:gitgutter_sign_modified_removed = '~'
147
148let g:fzf_colors =
149 \ { 'fg': ['fg', 'Noise'],
150 \ 'bg': ['bg', 'Noise'],
151 \ 'hl': ['fg', 'Statement'],
152 \ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'],
153 \ 'bg+': ['bg', 'CursorLine', 'CursorColumn'],
154 \ 'hl+': ['fg', 'Statement'],
155 \ 'info': ['fg', 'PreProc'],
156 \ 'border': ['fg', 'Ignore'],
157 \ 'prompt': ['fg', 'Conditional'],
158 \ 'pointer': ['fg', 'Exception'],
159 \ 'marker': ['fg', 'Keyword'],
160 \ 'spinner': ['fg', 'Label'],
161 \ 'header': ['fg', 'Comment'] }
162let g:fzf_layout = { 'down': '40%' }
163let g:fzf_preview_window = []
164
165highlight GitGutterAdd ctermfg=8
166highlight GitGutterChange ctermfg=8
167highlight GitGutterDelete ctermfg=8
168
169let g:rustfmt_autosave = 1
170
171let g:latex_view_general_viewer = "zathura"
172let g:vimtex_view_method = "zathura"
173let g:tex_flavor = 'latex'
174
175let g:elm_setup_keybindings = 0
176
177let g:completion_matching_strategy_list = ['exact', 'substring', 'fuzzy', 'all']
178let g:completion_trigger_on_delete = 1
179
180sign define LspDiagnosticsSignError text=× texthl=LspDiagnosticsSignError linehl= numhl=
181sign define LspDiagnosticsSignWarning text=\! texthl=LspDiagnosticsSignWarning linehl= numhl=
182sign define LspDiagnosticsSignInformation text=i texthl=LspDiagnosticsSignInformation linehl= numhl=
183sign define LspDiagnosticsSignHint text=\~ texthl=LspDiagnosticsSignHint linehl= numhl=
184
185let g:user_emmet_leader_key='<C-X>'
186
187lua << EOF
188require 'lsp'
189require 'treesitter'
190EOF
191
diff --git a/programs/neovim.nix b/programs/neovim.nix
new file mode 100644
index 0000000..18baeac
--- /dev/null
+++ b/programs/neovim.nix
@@ -0,0 +1,45 @@
1{ config
2, pkgs
3, ...
4}:
5
6{
7 programs.neovim = {
8 enable = true;
9 extraConfig = builtins.readFile ./init.vim;
10 withNodeJs = false;
11 vimAlias = true;
12 withPython3 = true;
13 extraPackages = with pkgs; [
14 gcc
15 python37Packages.yapf
16 hlint
17 ocamlformat
18 ocamlPackages.ocaml-lsp
19 ];
20 plugins = with pkgs.vimPlugins; [
21 # neovim only
22 nvim-lspconfig
23 (nvim-treesitter.withPlugins (_: pkgs.tree-sitter.allGrammars))
24 completion-nvim
25
26 # tpope
27 vim-surround
28 vim-unimpaired
29 vim-repeat
30 # vim-fugitive
31
32 # syntax
33 rust-vim
34 vim-nix
35 vimtex
36
37 # handy
38 # vim-gitgutter
39 tabular
40 emmet-vim
41 vimwiki
42 fzf-vim
43 ];
44 };
45}
diff --git a/programs/readline.nix b/programs/readline.nix
new file mode 100644
index 0000000..be43ace
--- /dev/null
+++ b/programs/readline.nix
@@ -0,0 +1,22 @@
1{ config
2, pkgs
3, ...
4}:
5
6{
7 programs.readline = {
8 enable = true;
9 bindings = {
10 "\\C-o" = ''"$HOME/scripts/tmux-fzf.sh\n"'';
11 "\\t" = "menu-complete";
12 "\\e[Z" = "menu-complete-backward";
13 };
14 variables = {
15 "completion-ignore-case" = "on";
16 "show-all-if-ambiguous" = "on";
17 "colored-stats" = "on";
18 "completion-display-width" = 4;
19 "enable-bracketed-paste" = "on";
20 };
21 };
22}
diff --git a/programs/st/config.h b/programs/st/config.h
new file mode 100644
index 0000000..696b99f
--- /dev/null
+++ b/programs/st/config.h
@@ -0,0 +1,507 @@
1
2/* See LICENSE file for copyright and license details. */
3
4/*
5 * appearance
6 *
7 * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
8 */
9static char *font = "Nerd Input:pixelsize=12:antialias=true:autohint=true";
10static int borderpx = 30;
11
12/*
13 * What program is execed by st depends of these precedence rules:
14 * 1: program passed with -e
15 * 2: scroll and/or utmp
16 * 3: SHELL environment variable
17 * 4: value of shell in /etc/passwd
18 * 5: value of shell in config.h
19 */
20static char *shell = "/run/current-system/sw/bin/bash";
21char *utmp = NULL;
22/* scroll program: to enable use a string like "scroll" */
23char *scroll = NULL;
24char *stty_args = "stty raw pass8 nl -echo -iexten -cstopb 38400";
25
26/* identification sequence returned in DA and DECID */
27char *vtiden = "\033[?6c";
28
29/* Kerning / character bounding-box multipliers */
30static float cwscale = 0.9;
31static float chscale = 1.0;
32
33/*
34 * word delimiter string
35 *
36 * More advanced example: L" `'\"()[]{}"
37 */
38wchar_t *worddelimiters = L" ";
39
40/* selection timeouts (in milliseconds) */
41static unsigned int doubleclicktimeout = 300;
42static unsigned int tripleclicktimeout = 600;
43
44/* alt screens */
45int allowaltscreen = 1;
46
47/* allow certain non-interactive (insecure) window operations such as:
48 setting the clipboard text */
49int allowwindowops = 0;
50
51/*
52 * draw latency range in ms - from new content/keypress/etc until drawing.
53 * within this range, st draws when content stops arriving (idle). mostly it's
54 * near minlatency, but it waits longer for slow updates to avoid partial draw.
55 * low minlatency will tear/flicker more, as it can "detect" idle too early.
56 */
57static double minlatency = 8;
58static double maxlatency = 33;
59
60/*
61 * blinking timeout (set to 0 to disable blinking) for the terminal blinking
62 * attribute.
63 */
64static unsigned int blinktimeout = 800;
65
66/*
67 * thickness of underline and bar cursors
68 */
69static unsigned int cursorthickness = 2;
70
71/*
72 * bell volume. It must be a value between -100 and 100. Use 0 for disabling
73 * it
74 */
75static int bellvolume = 0;
76
77/* default TERM value */
78char *termname = "xterm-256color-italic";
79
80/*
81 * spaces per tab
82 *
83 * When you are changing this value, don't forget to adapt the »it« value in
84 * the st.info and appropriately install the st.info in the environment where
85 * you use this st version.
86 *
87 * it#$tabspaces,
88 *
89 * Secondly make sure your kernel is not expanding tabs. When running `stty
90 * -a` »tab0« should appear. You can tell the terminal to not expand tabs by
91 * running following command:
92 *
93 * stty tabs
94 */
95unsigned int tabspaces = 4;
96
97/* Terminal colors (16 first used in escape sequence) */
98static const char *colorname[] = {
99 /* 8 normal colors */
100 "black",
101 "red3",
102 "green3",
103 "yellow3",
104 "blue2",
105 "magenta3",
106 "cyan3",
107 "gray90",
108
109 /* 8 bright colors */
110 "gray50",
111 "red",
112 "green",
113 "yellow",
114 "#5c5cff",
115 "magenta",
116 "cyan",
117 "white",
118
119 [255] = 0,
120
121 /* more colors can be added after 255 to use with DefaultXX */
122 "#cccccc",
123 "#555555",
124};
125
126
127/*
128 * Default colors (colorname index)
129 * foreground, background, cursor, reverse cursor
130 */
131unsigned int defaultfg = 7;
132unsigned int defaultbg = 0;
133static unsigned int defaultcs = 256;
134static unsigned int defaultrcs = 257;
135
136/*
137 * Default shape of cursor
138 * 2: Block ("█")
139 * 4: Underline ("_")
140 * 6: Bar ("|")
141 * 7: Snowman ("☃")
142 */
143static unsigned int cursorshape = 2;
144
145/*
146 * Default columns and rows numbers
147 */
148
149static unsigned int cols = 80;
150static unsigned int rows = 24;
151
152/*
153 * Default colour and shape of the mouse cursor
154 */
155static unsigned int mouseshape = XC_xterm;
156static unsigned int mousefg = 7;
157static unsigned int mousebg = 0;
158
159/*
160 * Color used to display font attributes when fontconfig selected a font which
161 * doesn't match the ones requested.
162 */
163static unsigned int defaultattr = 11;
164
165/*
166 * Force mouse select/shortcuts while mask is active (when MODE_MOUSE is set).
167 * Note that if you want to use ShiftMask with selmasks, set this to an other
168 * modifier, set to 0 to not use it.
169 */
170static uint forcemousemod = ShiftMask;
171
172ResourcePref resources[] = {
173 { "font", STRING, &font },
174 { "color0", STRING, &colorname[0] },
175 { "color1", STRING, &colorname[1] },
176 { "color2", STRING, &colorname[2] },
177 { "color3", STRING, &colorname[3] },
178 { "color4", STRING, &colorname[4] },
179 { "color5", STRING, &colorname[5] },
180 { "color6", STRING, &colorname[6] },
181 { "color7", STRING, &colorname[7] },
182 { "color8", STRING, &colorname[8] },
183 { "color9", STRING, &colorname[9] },
184 { "color10", STRING, &colorname[10] },
185 { "color11", STRING, &colorname[11] },
186 { "color12", STRING, &colorname[12] },
187 { "color13", STRING, &colorname[13] },
188 { "color14", STRING, &colorname[14] },
189 { "color15", STRING, &colorname[15] },
190 { "background", STRING, &colorname[0] },
191 { "foreground", STRING, &colorname[7] },
192 { "cursorColor", STRING, &colorname[7] },
193 { "termname", STRING, &termname },
194 { "shell", STRING, &shell },
195 { "minlatency", INTEGER, &minlatency },
196 { "maxlatency", INTEGER, &maxlatency },
197 { "blinktimeout", INTEGER, &blinktimeout },
198 { "bellvolume", INTEGER, &bellvolume },
199 { "tabspaces", INTEGER, &tabspaces },
200 { "borderpx", INTEGER, &borderpx },
201 { "cwscale", FLOAT, &cwscale },
202 { "chscale", FLOAT, &chscale },
203};
204
205/*
206 * Internal mouse shortcuts.
207 * Beware that overloading Button1 will disable the selection.
208 */
209static MouseShortcut mshortcuts[] = {
210 /* mask button function argument release */
211 { XK_ANY_MOD, Button2, selpaste, {.i = 0}, 1 },
212 { ShiftMask, Button4, ttysend, {.s = "\033[5;2~"} },
213 { XK_ANY_MOD, Button4, ttysend, {.s = "\031"} },
214 { ShiftMask, Button5, ttysend, {.s = "\033[6;2~"} },
215 { XK_ANY_MOD, Button5, ttysend, {.s = "\005"} },
216};
217
218/* Internal keyboard shortcuts. */
219#define MODKEY Mod1Mask
220#define TERMMOD (ControlMask|ShiftMask)
221
222static Shortcut shortcuts[] = {
223 /* mask keysym function argument */
224 { XK_ANY_MOD, XK_Break, sendbreak, {.i = 0} },
225 { ControlMask, XK_Print, toggleprinter, {.i = 0} },
226 { ShiftMask, XK_Print, printscreen, {.i = 0} },
227 { XK_ANY_MOD, XK_Print, printsel, {.i = 0} },
228 { TERMMOD, XK_Prior, zoom, {.f = +1} },
229 { TERMMOD, XK_Next, zoom, {.f = -1} },
230 { TERMMOD, XK_Home, zoomreset, {.f = 0} },
231 { TERMMOD, XK_C, clipcopy, {.i = 0} },
232 { TERMMOD, XK_V, clippaste, {.i = 0} },
233 { TERMMOD, XK_Y, selpaste, {.i = 0} },
234 { ShiftMask, XK_Insert, selpaste, {.i = 0} },
235 { TERMMOD, XK_Num_Lock, numlock, {.i = 0} },
236};
237
238/*
239 * Special keys (change & recompile st.info accordingly)
240 *
241 * Mask value:
242 * * Use XK_ANY_MOD to match the key no matter modifiers state
243 * * Use XK_NO_MOD to match the key alone (no modifiers)
244 * appkey value:
245 * * 0: no value
246 * * > 0: keypad application mode enabled
247 * * = 2: term.numlock = 1
248 * * < 0: keypad application mode disabled
249 * appcursor value:
250 * * 0: no value
251 * * > 0: cursor application mode enabled
252 * * < 0: cursor application mode disabled
253 *
254 * Be careful with the order of the definitions because st searches in
255 * this table sequentially, so any XK_ANY_MOD must be in the last
256 * position for a key.
257 */
258
259/*
260 * If you want keys other than the X11 function keys (0xFD00 - 0xFFFF)
261 * to be mapped below, add them to this array.
262 */
263static KeySym mappedkeys[] = { -1 };
264
265/*
266 * State bits to ignore when matching key or button events. By default,
267 * numlock (Mod2Mask) and keyboard layout (XK_SWITCH_MOD) are ignored.
268 */
269static uint ignoremod = Mod2Mask|XK_SWITCH_MOD;
270
271/*
272 * This is the huge key array which defines all compatibility to the Linux
273 * world. Please decide about changes wisely.
274 */
275static Key key[] = {
276 /* keysym mask string appkey appcursor */
277 { XK_KP_Home, ShiftMask, "\033[2J", 0, -1},
278 { XK_KP_Home, ShiftMask, "\033[1;2H", 0, +1},
279 { XK_KP_Home, XK_ANY_MOD, "\033[H", 0, -1},
280 { XK_KP_Home, XK_ANY_MOD, "\033[1~", 0, +1},
281 { XK_KP_Up, XK_ANY_MOD, "\033Ox", +1, 0},
282 { XK_KP_Up, XK_ANY_MOD, "\033[A", 0, -1},
283 { XK_KP_Up, XK_ANY_MOD, "\033OA", 0, +1},
284 { XK_KP_Down, XK_ANY_MOD, "\033Or", +1, 0},
285 { XK_KP_Down, XK_ANY_MOD, "\033[B", 0, -1},
286 { XK_KP_Down, XK_ANY_MOD, "\033OB", 0, +1},
287 { XK_KP_Left, XK_ANY_MOD, "\033Ot", +1, 0},
288 { XK_KP_Left, XK_ANY_MOD, "\033[D", 0, -1},
289 { XK_KP_Left, XK_ANY_MOD, "\033OD", 0, +1},
290 { XK_KP_Right, XK_ANY_MOD, "\033Ov", +1, 0},
291 { XK_KP_Right, XK_ANY_MOD, "\033[C", 0, -1},
292 { XK_KP_Right, XK_ANY_MOD, "\033OC", 0, +1},
293 { XK_KP_Prior, ShiftMask, "\033[5;2~", 0, 0},
294 { XK_KP_Prior, XK_ANY_MOD, "\033[5~", 0, 0},
295 { XK_KP_Begin, XK_ANY_MOD, "\033[E", 0, 0},
296 { XK_KP_End, ControlMask, "\033[J", -1, 0},
297 { XK_KP_End, ControlMask, "\033[1;5F", +1, 0},
298 { XK_KP_End, ShiftMask, "\033[K", -1, 0},
299 { XK_KP_End, ShiftMask, "\033[1;2F", +1, 0},
300 { XK_KP_End, XK_ANY_MOD, "\033[4~", 0, 0},
301 { XK_KP_Next, ShiftMask, "\033[6;2~", 0, 0},
302 { XK_KP_Next, XK_ANY_MOD, "\033[6~", 0, 0},
303 { XK_KP_Insert, ShiftMask, "\033[2;2~", +1, 0},
304 { XK_KP_Insert, ShiftMask, "\033[4l", -1, 0},
305 { XK_KP_Insert, ControlMask, "\033[L", -1, 0},
306 { XK_KP_Insert, ControlMask, "\033[2;5~", +1, 0},
307 { XK_KP_Insert, XK_ANY_MOD, "\033[4h", -1, 0},
308 { XK_KP_Insert, XK_ANY_MOD, "\033[2~", +1, 0},
309 { XK_KP_Delete, ControlMask, "\033[M", -1, 0},
310 { XK_KP_Delete, ControlMask, "\033[3;5~", +1, 0},
311 { XK_KP_Delete, ShiftMask, "\033[2K", -1, 0},
312 { XK_KP_Delete, ShiftMask, "\033[3;2~", +1, 0},
313 { XK_KP_Delete, XK_ANY_MOD, "\033[P", -1, 0},
314 { XK_KP_Delete, XK_ANY_MOD, "\033[3~", +1, 0},
315 { XK_KP_Multiply, XK_ANY_MOD, "\033Oj", +2, 0},
316 { XK_KP_Add, XK_ANY_MOD, "\033Ok", +2, 0},
317 { XK_KP_Enter, XK_ANY_MOD, "\033OM", +2, 0},
318 { XK_KP_Enter, XK_ANY_MOD, "\r", -1, 0},
319 { XK_KP_Subtract, XK_ANY_MOD, "\033Om", +2, 0},
320 { XK_KP_Decimal, XK_ANY_MOD, "\033On", +2, 0},
321 { XK_KP_Divide, XK_ANY_MOD, "\033Oo", +2, 0},
322 { XK_KP_0, XK_ANY_MOD, "\033Op", +2, 0},
323 { XK_KP_1, XK_ANY_MOD, "\033Oq", +2, 0},
324 { XK_KP_2, XK_ANY_MOD, "\033Or", +2, 0},
325 { XK_KP_3, XK_ANY_MOD, "\033Os", +2, 0},
326 { XK_KP_4, XK_ANY_MOD, "\033Ot", +2, 0},
327 { XK_KP_5, XK_ANY_MOD, "\033Ou", +2, 0},
328 { XK_KP_6, XK_ANY_MOD, "\033Ov", +2, 0},
329 { XK_KP_7, XK_ANY_MOD, "\033Ow", +2, 0},
330 { XK_KP_8, XK_ANY_MOD, "\033Ox", +2, 0},
331 { XK_KP_9, XK_ANY_MOD, "\033Oy", +2, 0},
332 { XK_Up, ShiftMask, "\033[1;2A", 0, 0},
333 { XK_Up, Mod1Mask, "\033[1;3A", 0, 0},
334 { XK_Up, ShiftMask|Mod1Mask,"\033[1;4A", 0, 0},
335 { XK_Up, ControlMask, "\033[1;5A", 0, 0},
336 { XK_Up, ShiftMask|ControlMask,"\033[1;6A", 0, 0},
337 { XK_Up, ControlMask|Mod1Mask,"\033[1;7A", 0, 0},
338 { XK_Up,ShiftMask|ControlMask|Mod1Mask,"\033[1;8A", 0, 0},
339 { XK_Up, XK_ANY_MOD, "\033[A", 0, -1},
340 { XK_Up, XK_ANY_MOD, "\033OA", 0, +1},
341 { XK_Down, ShiftMask, "\033[1;2B", 0, 0},
342 { XK_Down, Mod1Mask, "\033[1;3B", 0, 0},
343 { XK_Down, ShiftMask|Mod1Mask,"\033[1;4B", 0, 0},
344 { XK_Down, ControlMask, "\033[1;5B", 0, 0},
345 { XK_Down, ShiftMask|ControlMask,"\033[1;6B", 0, 0},
346 { XK_Down, ControlMask|Mod1Mask,"\033[1;7B", 0, 0},
347 { XK_Down,ShiftMask|ControlMask|Mod1Mask,"\033[1;8B",0, 0},
348 { XK_Down, XK_ANY_MOD, "\033[B", 0, -1},
349 { XK_Down, XK_ANY_MOD, "\033OB", 0, +1},
350 { XK_Left, ShiftMask, "\033[1;2D", 0, 0},
351 { XK_Left, Mod1Mask, "\033[1;3D", 0, 0},
352 { XK_Left, ShiftMask|Mod1Mask,"\033[1;4D", 0, 0},
353 { XK_Left, ControlMask, "\033[1;5D", 0, 0},
354 { XK_Left, ShiftMask|ControlMask,"\033[1;6D", 0, 0},
355 { XK_Left, ControlMask|Mod1Mask,"\033[1;7D", 0, 0},
356 { XK_Left,ShiftMask|ControlMask|Mod1Mask,"\033[1;8D",0, 0},
357 { XK_Left, XK_ANY_MOD, "\033[D", 0, -1},
358 { XK_Left, XK_ANY_MOD, "\033OD", 0, +1},
359 { XK_Right, ShiftMask, "\033[1;2C", 0, 0},
360 { XK_Right, Mod1Mask, "\033[1;3C", 0, 0},
361 { XK_Right, ShiftMask|Mod1Mask,"\033[1;4C", 0, 0},
362 { XK_Right, ControlMask, "\033[1;5C", 0, 0},
363 { XK_Right, ShiftMask|ControlMask,"\033[1;6C", 0, 0},
364 { XK_Right, ControlMask|Mod1Mask,"\033[1;7C", 0, 0},
365 { XK_Right,ShiftMask|ControlMask|Mod1Mask,"\033[1;8C",0, 0},
366 { XK_Right, XK_ANY_MOD, "\033[C", 0, -1},
367 { XK_Right, XK_ANY_MOD, "\033OC", 0, +1},
368 { XK_ISO_Left_Tab, ShiftMask, "\033[Z", 0, 0},
369 { XK_Return, Mod1Mask, "\033\r", 0, 0},
370 { XK_Return, XK_ANY_MOD, "\r", 0, 0},
371 { XK_Insert, ShiftMask, "\033[4l", -1, 0},
372 { XK_Insert, ShiftMask, "\033[2;2~", +1, 0},
373 { XK_Insert, ControlMask, "\033[L", -1, 0},
374 { XK_Insert, ControlMask, "\033[2;5~", +1, 0},
375 { XK_Insert, XK_ANY_MOD, "\033[4h", -1, 0},
376 { XK_Insert, XK_ANY_MOD, "\033[2~", +1, 0},
377 { XK_Delete, ControlMask, "\033[M", -1, 0},
378 { XK_Delete, ControlMask, "\033[3;5~", +1, 0},
379 { XK_Delete, ShiftMask, "\033[2K", -1, 0},
380 { XK_Delete, ShiftMask, "\033[3;2~", +1, 0},
381 { XK_Delete, XK_ANY_MOD, "\033[P", -1, 0},
382 { XK_Delete, XK_ANY_MOD, "\033[3~", +1, 0},
383 { XK_BackSpace, XK_NO_MOD, "\177", 0, 0},
384 { XK_BackSpace, Mod1Mask, "\033\177", 0, 0},
385 { XK_Home, ShiftMask, "\033[2J", 0, -1},
386 { XK_Home, ShiftMask, "\033[1;2H", 0, +1},
387 { XK_Home, XK_ANY_MOD, "\033[H", 0, -1},
388 { XK_Home, XK_ANY_MOD, "\033[1~", 0, +1},
389 { XK_End, ControlMask, "\033[J", -1, 0},
390 { XK_End, ControlMask, "\033[1;5F", +1, 0},
391 { XK_End, ShiftMask, "\033[K", -1, 0},
392 { XK_End, ShiftMask, "\033[1;2F", +1, 0},
393 { XK_End, XK_ANY_MOD, "\033[4~", 0, 0},
394 { XK_Prior, ControlMask, "\033[5;5~", 0, 0},
395 { XK_Prior, ShiftMask, "\033[5;2~", 0, 0},
396 { XK_Prior, XK_ANY_MOD, "\033[5~", 0, 0},
397 { XK_Next, ControlMask, "\033[6;5~", 0, 0},
398 { XK_Next, ShiftMask, "\033[6;2~", 0, 0},
399 { XK_Next, XK_ANY_MOD, "\033[6~", 0, 0},
400 { XK_F1, XK_NO_MOD, "\033OP" , 0, 0},
401 { XK_F1, /* F13 */ ShiftMask, "\033[1;2P", 0, 0},
402 { XK_F1, /* F25 */ ControlMask, "\033[1;5P", 0, 0},
403 { XK_F1, /* F37 */ Mod4Mask, "\033[1;6P", 0, 0},
404 { XK_F1, /* F49 */ Mod1Mask, "\033[1;3P", 0, 0},
405 { XK_F1, /* F61 */ Mod3Mask, "\033[1;4P", 0, 0},
406 { XK_F2, XK_NO_MOD, "\033OQ" , 0, 0},
407 { XK_F2, /* F14 */ ShiftMask, "\033[1;2Q", 0, 0},
408 { XK_F2, /* F26 */ ControlMask, "\033[1;5Q", 0, 0},
409 { XK_F2, /* F38 */ Mod4Mask, "\033[1;6Q", 0, 0},
410 { XK_F2, /* F50 */ Mod1Mask, "\033[1;3Q", 0, 0},
411 { XK_F2, /* F62 */ Mod3Mask, "\033[1;4Q", 0, 0},
412 { XK_F3, XK_NO_MOD, "\033OR" , 0, 0},
413 { XK_F3, /* F15 */ ShiftMask, "\033[1;2R", 0, 0},
414 { XK_F3, /* F27 */ ControlMask, "\033[1;5R", 0, 0},
415 { XK_F3, /* F39 */ Mod4Mask, "\033[1;6R", 0, 0},
416 { XK_F3, /* F51 */ Mod1Mask, "\033[1;3R", 0, 0},
417 { XK_F3, /* F63 */ Mod3Mask, "\033[1;4R", 0, 0},
418 { XK_F4, XK_NO_MOD, "\033OS" , 0, 0},
419 { XK_F4, /* F16 */ ShiftMask, "\033[1;2S", 0, 0},
420 { XK_F4, /* F28 */ ControlMask, "\033[1;5S", 0, 0},
421 { XK_F4, /* F40 */ Mod4Mask, "\033[1;6S", 0, 0},
422 { XK_F4, /* F52 */ Mod1Mask, "\033[1;3S", 0, 0},
423 { XK_F5, XK_NO_MOD, "\033[15~", 0, 0},
424 { XK_F5, /* F17 */ ShiftMask, "\033[15;2~", 0, 0},
425 { XK_F5, /* F29 */ ControlMask, "\033[15;5~", 0, 0},
426 { XK_F5, /* F41 */ Mod4Mask, "\033[15;6~", 0, 0},
427 { XK_F5, /* F53 */ Mod1Mask, "\033[15;3~", 0, 0},
428 { XK_F6, XK_NO_MOD, "\033[17~", 0, 0},
429 { XK_F6, /* F18 */ ShiftMask, "\033[17;2~", 0, 0},
430 { XK_F6, /* F30 */ ControlMask, "\033[17;5~", 0, 0},
431 { XK_F6, /* F42 */ Mod4Mask, "\033[17;6~", 0, 0},
432 { XK_F6, /* F54 */ Mod1Mask, "\033[17;3~", 0, 0},
433 { XK_F7, XK_NO_MOD, "\033[18~", 0, 0},
434 { XK_F7, /* F19 */ ShiftMask, "\033[18;2~", 0, 0},
435 { XK_F7, /* F31 */ ControlMask, "\033[18;5~", 0, 0},
436 { XK_F7, /* F43 */ Mod4Mask, "\033[18;6~", 0, 0},
437 { XK_F7, /* F55 */ Mod1Mask, "\033[18;3~", 0, 0},
438 { XK_F8, XK_NO_MOD, "\033[19~", 0, 0},
439 { XK_F8, /* F20 */ ShiftMask, "\033[19;2~", 0, 0},
440 { XK_F8, /* F32 */ ControlMask, "\033[19;5~", 0, 0},
441 { XK_F8, /* F44 */ Mod4Mask, "\033[19;6~", 0, 0},
442 { XK_F8, /* F56 */ Mod1Mask, "\033[19;3~", 0, 0},
443 { XK_F9, XK_NO_MOD, "\033[20~", 0, 0},
444 { XK_F9, /* F21 */ ShiftMask, "\033[20;2~", 0, 0},
445 { XK_F9, /* F33 */ ControlMask, "\033[20;5~", 0, 0},
446 { XK_F9, /* F45 */ Mod4Mask, "\033[20;6~", 0, 0},
447 { XK_F9, /* F57 */ Mod1Mask, "\033[20;3~", 0, 0},
448 { XK_F10, XK_NO_MOD, "\033[21~", 0, 0},
449 { XK_F10, /* F22 */ ShiftMask, "\033[21;2~", 0, 0},
450 { XK_F10, /* F34 */ ControlMask, "\033[21;5~", 0, 0},
451 { XK_F10, /* F46 */ Mod4Mask, "\033[21;6~", 0, 0},
452 { XK_F10, /* F58 */ Mod1Mask, "\033[21;3~", 0, 0},
453 { XK_F11, XK_NO_MOD, "\033[23~", 0, 0},
454 { XK_F11, /* F23 */ ShiftMask, "\033[23;2~", 0, 0},
455 { XK_F11, /* F35 */ ControlMask, "\033[23;5~", 0, 0},
456 { XK_F11, /* F47 */ Mod4Mask, "\033[23;6~", 0, 0},
457 { XK_F11, /* F59 */ Mod1Mask, "\033[23;3~", 0, 0},
458 { XK_F12, XK_NO_MOD, "\033[24~", 0, 0},
459 { XK_F12, /* F24 */ ShiftMask, "\033[24;2~", 0, 0},
460 { XK_F12, /* F36 */ ControlMask, "\033[24;5~", 0, 0},
461 { XK_F12, /* F48 */ Mod4Mask, "\033[24;6~", 0, 0},
462 { XK_F12, /* F60 */ Mod1Mask, "\033[24;3~", 0, 0},
463 { XK_F13, XK_NO_MOD, "\033[1;2P", 0, 0},
464 { XK_F14, XK_NO_MOD, "\033[1;2Q", 0, 0},
465 { XK_F15, XK_NO_MOD, "\033[1;2R", 0, 0},
466 { XK_F16, XK_NO_MOD, "\033[1;2S", 0, 0},
467 { XK_F17, XK_NO_MOD, "\033[15;2~", 0, 0},
468 { XK_F18, XK_NO_MOD, "\033[17;2~", 0, 0},
469 { XK_F19, XK_NO_MOD, "\033[18;2~", 0, 0},
470 { XK_F20, XK_NO_MOD, "\033[19;2~", 0, 0},
471 { XK_F21, XK_NO_MOD, "\033[20;2~", 0, 0},
472 { XK_F22, XK_NO_MOD, "\033[21;2~", 0, 0},
473 { XK_F23, XK_NO_MOD, "\033[23;2~", 0, 0},
474 { XK_F24, XK_NO_MOD, "\033[24;2~", 0, 0},
475 { XK_F25, XK_NO_MOD, "\033[1;5P", 0, 0},
476 { XK_F26, XK_NO_MOD, "\033[1;5Q", 0, 0},
477 { XK_F27, XK_NO_MOD, "\033[1;5R", 0, 0},
478 { XK_F28, XK_NO_MOD, "\033[1;5S", 0, 0},
479 { XK_F29, XK_NO_MOD, "\033[15;5~", 0, 0},
480 { XK_F30, XK_NO_MOD, "\033[17;5~", 0, 0},
481 { XK_F31, XK_NO_MOD, "\033[18;5~", 0, 0},
482 { XK_F32, XK_NO_MOD, "\033[19;5~", 0, 0},
483 { XK_F33, XK_NO_MOD, "\033[20;5~", 0, 0},
484 { XK_F34, XK_NO_MOD, "\033[21;5~", 0, 0},
485 { XK_F35, XK_NO_MOD, "\033[23;5~", 0, 0},
486};
487
488/*
489 * Selection types' masks.
490 * Use the same masks as usual.
491 * Button1Mask is always unset, to make masks match between ButtonPress.
492 * ButtonRelease and MotionNotify.
493 * If no match is found, regular selection is used.
494 */
495static uint selmasks[] = {
496 [SEL_RECTANGULAR] = Mod1Mask,
497};
498
499/*
500 * Printable characters in ASCII, used to estimate the advance width
501 * of single wide characters.
502 */
503static char ascii_printable[] =
504 " !\"#$%&'()*+,-./0123456789:;<=>?"
505 "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
506 "`abcdefghijklmnopqrstuvwxyz{|}~";
507
diff --git a/programs/tmux.nix b/programs/tmux.nix
new file mode 100644
index 0000000..58369da
--- /dev/null
+++ b/programs/tmux.nix
@@ -0,0 +1,85 @@
1{ config
2, pkgs
3, ...
4}:
5
6{
7 programs.tmux = {
8 enable = true;
9 plugins = with pkgs; [
10 tmuxPlugins.fingers
11 ];
12 extraConfig = ''
13 set -g prefix C-a
14 setw -g mode-keys vi
15 unbind-key C-b
16 bind-key C-a send-prefix
17
18 bind r source-file ~/.tmux.conf
19
20 set-option -g default-terminal xterm-256color-italic
21 set escape-time 20
22
23 set -g mouse on
24
25 set -g base-index 1
26 setw -g pane-base-index 1
27
28 # pane binds
29 bind-key h select-pane -L
30 bind-key j select-pane -D
31 bind-key k select-pane -U
32 bind-key l select-pane -R
33 bind-key -r H resize-pane -L 5
34 bind-key -r J resize-pane -D 5
35 bind-key -r K resize-pane -U 5
36 bind-key -r L resize-pane -R 5
37
38 # window binds
39 bind -n M-h previous-window
40 bind -n M-l next-window
41 bind-key "|" split-window -h -c "#{pane_current_path}"
42 bind-key "-" split-window -v -c "#{pane_current_path}"
43 bind-key s choose-session
44 bind-key c new-window -c "#{pane_current_path}"
45 bind-key ) swap-window -t +1
46 bind-key ( swap-window -t -1
47 bind-key [ copy-mode
48
49 # statusline hide / unhide
50 bind -n M-down set -q status off
51 bind -n M-up set -q status on
52
53 bind-key -r "<" swap-window -d -t -1
54 bind-key -r ">" swap-window -d -t +1
55
56 bind-key -T copy-mode-vi v send-keys -X begin-selection
57 bind-key -T copy-mode-vi y send-keys -X copy-pipe "xclip -i -sel p -f | xclip -i -sel c "
58 bind-key -T copy-mode-vi r send-keys -X rectangle-toggle
59 bind P paste-buffer
60
61 bind E command-prompt -p "Command:" \
62 "run \"tmux list-panes -a -F '##{session_name}:##{window_index}.##{pane_index}' \
63 | xargs -I PANE tmux send-keys -t PANE '%1' Enter\""
64
65 set-window-option -g allow-rename off
66
67 set -g pane-border-style fg=colour11
68 set -g pane-active-border-style fg=colour8
69
70 set -g status-justify right
71 set -g status-right ""
72 set -g status-style "bg=colour0"
73 set -ag status-style "fg=colour7"
74
75 set -g window-status-current-format " #[fg=colour15]#W#{?window_zoomed_flag, #[fg=colour2]+,}#{?window_activity_flag, #[fg=colour3]!,}"
76 set -g window-status-format " #[fg=colour8]#W#{?window_zoomed_flag, #[fg=colour2]+,}"
77
78
79 set -g status-left-length 100
80 set -g status-left "#[fg=colour15]#(date +"%H%M") #[fg=colour8]hrs "
81 set -ag status-left "#[fg=colour15]#(date +"%d/%m")#[fg=colour8] #(date +"%Y") "
82 set -ag status-left "#[fg=colour7]#(~/scripts/bat -q)#[fg=colour12]"
83 '';
84 };
85}
diff --git a/programs/zathura.nix b/programs/zathura.nix
new file mode 100644
index 0000000..5e5c8ce
--- /dev/null
+++ b/programs/zathura.nix
@@ -0,0 +1,37 @@
1{ config
2, pkgs
3, theme
4, ...
5}:
6
7with theme;
8{
9 programs.zathura = {
10 enable = true;
11 options = {
12 incremental-search = "true";
13 recolor = "true";
14 default-bg = base00;
15 default-fg = base05;
16 completion-bg = base00;
17 completion-fg = base05;
18 completion-highlight-bg = base0E;
19 completion-highlight-fg = base05;
20 statusbar-bg = base00;
21 statusbar-fg = base05;
22 inputbar-bg = base00;
23 inputbar-fg = base05;
24 recolor-darkcolor = base05;
25 recolor-lightcolor = base00;
26 window-height = "800";
27 window-width = "600";
28 adjust-open = "width";
29 smooth-scroll = "true";
30 statusbar-home-tilde = "true";
31 statusbar-h-padding = "50";
32 statusbar-v-padding = "50";
33 guioptions = "s";
34 font = "Input 10";
35 };
36 };
37}