Compare commits
No commits in common. "d20283c8f726a52b91e71582653fa46a80fdbd11" and "454b80aa4e0c02f91d0249e6f565679ad28caefc" have entirely different histories.
d20283c8f7
...
454b80aa4e
6
.bashrc
6
.bashrc
|
@ -36,10 +36,10 @@ export PATH=~/.bin:$PATH
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
# History {{{
|
# History {{{
|
||||||
export HISTSIZE=999999
|
|
||||||
export HISTFILESIZE= # Unlimited
|
|
||||||
export HISTCONTROL=ignoreboth:erasedups
|
export HISTCONTROL=ignoreboth:erasedups
|
||||||
export HISTIGNORE=" *:clear:l:ls:cd" # Omit commands from history (e.g. those prepended with space)
|
export HISTSIZE=500000
|
||||||
|
# Omit `clear, ls...`; commands prepended with space
|
||||||
|
export HISTIGNORE="clear:l: *"
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
# Man pages {{{
|
# Man pages {{{
|
||||||
|
|
|
@ -1,15 +1,39 @@
|
||||||
[general]
|
[colors.primary]
|
||||||
import = [
|
background = '#eeeeee'
|
||||||
"font.toml",
|
foreground = '#222222'
|
||||||
"colors.toml"
|
|
||||||
]
|
|
||||||
|
|
||||||
[scrolling]
|
[colors.cursor]
|
||||||
history = 100000
|
text = '#eeeeee'
|
||||||
multiplier = 8
|
cursor = '#000000'
|
||||||
|
|
||||||
[mouse]
|
[colors.normal]
|
||||||
hide_when_typing = true
|
black = '#d4d4d4'
|
||||||
|
red = '#ba2c69'
|
||||||
|
green = '#657622'
|
||||||
|
yellow = '#9b5b1b'
|
||||||
|
blue = '#2074a5'
|
||||||
|
magenta = '#8243cf'
|
||||||
|
cyan = '#257d6f'
|
||||||
|
white = '#525252'
|
||||||
|
|
||||||
|
[colors.bright]
|
||||||
|
black = '#9e9e9e'
|
||||||
|
red = '#da407f'
|
||||||
|
green = '#7b8e2b'
|
||||||
|
yellow = '#ba6f25'
|
||||||
|
blue = '#2d8cc5'
|
||||||
|
magenta = '#985fe6'
|
||||||
|
cyan = '#2e9786'
|
||||||
|
white = '#080808'
|
||||||
|
|
||||||
|
[font]
|
||||||
|
size = 18
|
||||||
|
|
||||||
|
[font.normal]
|
||||||
|
family = "Iosevka Term SS08"
|
||||||
|
|
||||||
|
[window]
|
||||||
|
decorations = "none"
|
||||||
|
|
||||||
[window.padding]
|
[window.padding]
|
||||||
x = 0
|
x = 0
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
[colors.primary]
|
|
||||||
background = '#eeeeee'
|
|
||||||
foreground = '#222222'
|
|
||||||
|
|
||||||
[colors.cursor]
|
|
||||||
text = '#eeeeee'
|
|
||||||
cursor = '#000000'
|
|
||||||
|
|
||||||
[colors.normal]
|
|
||||||
black = '#d4d4d4'
|
|
||||||
red = '#ba2c69'
|
|
||||||
green = '#657622'
|
|
||||||
yellow = '#9b5b1b'
|
|
||||||
blue = '#2074a5'
|
|
||||||
magenta = '#8243cf'
|
|
||||||
cyan = '#257d6f'
|
|
||||||
white = '#525252'
|
|
||||||
|
|
||||||
[colors.bright]
|
|
||||||
black = '#9e9e9e'
|
|
||||||
red = '#da407f'
|
|
||||||
green = '#7b8e2b'
|
|
||||||
yellow = '#ba6f25'
|
|
||||||
blue = '#2d8cc5'
|
|
||||||
magenta = '#985fe6'
|
|
||||||
cyan = '#2e9786'
|
|
||||||
white = '#080808'
|
|
|
@ -1,5 +0,0 @@
|
||||||
[font]
|
|
||||||
size = 18
|
|
||||||
|
|
||||||
[font.normal]
|
|
||||||
family = "Iosevka Term SS08"
|
|
|
@ -71,7 +71,7 @@
|
||||||
helper = !/usr/bin/gh auth git-credential
|
helper = !/usr/bin/gh auth git-credential
|
||||||
|
|
||||||
[merge]
|
[merge]
|
||||||
tool = nvimdiff
|
tool = vimdiff
|
||||||
conflictstyle = diff3
|
conflictstyle = diff3
|
||||||
[pull]
|
[pull]
|
||||||
rebase = true
|
rebase = true
|
||||||
|
|
Loading…
Reference in New Issue