blob: 52a8a45960e96359ff8c812ab1c9f85ff377f568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
add-highlighter global/ number-lines -relative
addhl global/ wrap -word
set -add global ui_options terminal_assistant=none
set -add global ui_options terminal_status_on_top=true
set global indentwidth 0
set global tabstop 4
hook global WinSetOption filetype=python %{
set window indentwidth 4
hook -once -always window WinSetOption filetype=.* %{
set window indentwidth 0
}
}
map global user <c> ':comment-line<ret>' -docstring 'comment line'
map global user <x> '<a-|>wl-copy<ret>' -docstring 'wl-copy'
|