Compare commits

...

3 Commits

Author SHA1 Message Date
an 016aa3f431 add alacritty config 2020-01-06 08:48:39 -05:00
an 4aa6b2cbf6 vim: don't use number 2020-01-06 08:48:09 -05:00
an 971c7e5d25 vim: make listchars customizable and make defaults ascii 2020-01-06 08:47:57 -05:00
4 changed files with 128 additions and 26 deletions

View File

@ -0,0 +1,66 @@
env:
TERM: xterm-256color
window:
dimensions:
columns: 80
lines: 24
padding:
x: 0
y: 0
dynamic_padding: false
decorations: full
startup_mode: Windowed
title: "Terminal"
gtk_theme_variant: None
scrolling:
history: 0
tabspaces: 8
font:
normal:
family: Dina
style: Regular
size: 10.0
offset:
x: 0
y: 0
glyph_offset:
x: 0
y: 0
draw_bold_text_with_bright_colors: true
colors:
primary:
background: '0x263238'
foreground: '0xcfd8dc'
bright_foreground: '0xeceff1'
normal:
black: '0x37474f'
red: '0xff3d00'
green: '0x00e676'
yellow: '0xff9100'
blue: '0x3d5afe'
magenta: '0x7c4dff'
cyan: '0x00b0ff'
white: '0xdcdcdc'
bright:
black: '0x607d8b'
red: '0xff1744'
green: '0x1de9b6'
yellow: '0xffc400'
blue: '0x2979ff'
magenta: '0xd500f9'
cyan: '0x00e5ff'
white: '0xffffff'
background_opacity: 0.97
cursor:
style: Block
unfocused_hollow: true
live_config_reload: false

View File

@ -6,7 +6,7 @@ let _agw.g_rows=24
let _agw.tab_wid=3
let _agw.use_ft=1
let _agw.use_list=1
let _agw.use_number=1
let _agw.use_number=0
let _agw.use_rainbow=1
let _agw.use_ruby=1
let _agw.use_tagbar=0
@ -26,4 +26,25 @@ let _agw.colors=[
\ 'base16-unikitty-dark',
\]
let _agw.mode_map.nov='n→'
let _agw.mode_map.noV='n↓'
let _agw.mode_map['no']='n↔'
let _agw.mode_map.niI='←i'
let _agw.mode_map.niR='←R'
let _agw.mode_map.niV='←v'
let _agw.mode_map.v='v→'
let _agw.mode_map.V='v↓'
let _agw.mode_map['']='v↔'
let _agw.mode_map.s='s→'
let _agw.mode_map.S='s↓'
let _agw.mode_map['']='s↔'
let _agw.mode_map.ic='↗c'
let _agw.mode_map.ix='↗x'
let _agw.mode_map.Rc='↗r'
let _agw.mode_map.Rx='↗X'
let _agw.listc.s="·"
let _agw.listc.r="‼"
let _agw.listc.l="¶"
" EOF

3
links
View File

@ -1,5 +1,6 @@
applications/XCompose ~/.XCompose
applications/Xresources ~/.Xresources
applications/alacritty.yml ~/.config/alacritty/alacritty.yml
applications/fish ~/.config/fish/config.fish
applications/gitconfig ~/.gitconfig
applications/kitty.conf ~/.config/kitty/kitty.conf
@ -41,6 +42,6 @@ system/git-gui.desktop ~/.local/share/kservices5/git-gui.desktop
system/progm.mim ~/.m17n.d/progm.mim
system/services/marrub.service ~/.config/systemd/user/marrub.service
system/services/marrub.timer ~/.config/systemd/user/marrub.timer
themes/hgtk.py ~/.config/ranger/colorschemes/hgtk.py
themes/MyColors.colorscheme ~/.local/share/konsole/MyColors.colorscheme
themes/hgtk.py ~/.config/ranger/colorschemes/hgtk.py
vim/vimrc ~/.vim/vimrc

View File

@ -2,36 +2,45 @@
let _agw={}
let _agw.mode_map = {
let _agw.mode_map={
\ 'n' : '~ ',
\ 'no' : 'n ',
\ 'nov' : 'n',
\ 'noV' : 'n',
\ 'no' : 'n',
\ 'niI' : 'i',
\ 'niR' : 'R',
\ 'niV' : 'v',
\ 'v' : 'v',
\ 'V' : 'v',
\ '' : 'v',
\ 's' : 's',
\ 'S' : 's',
\ '' : 's',
\ 'nov' : 'n>',
\ 'noV' : 'n_',
\ 'no' : 'n-',
\ 'niI' : '<i',
\ 'niR' : '<R',
\ 'niV' : '<v',
\ 'v' : 'v>',
\ 'V' : 'v_',
\ '' : 'v-',
\ 's' : 's>',
\ 'S' : 's_',
\ '' : 's-',
\ 'i' : 'i ',
\ 'ic' : 'c',
\ 'ix' : 'x',
\ 'ic' : '^c',
\ 'ix' : '^x',
\ 'R' : 'R ',
\ 'Rc' : 'r',
\ 'Rc' : '^r',
\ 'Rv' : "R'",
\ 'Rx' : 'X',
\ 'Rx' : '^X',
\ 'c' : '% ',
\ 'cv' : ":'",
\ 'ce' : ': ',
\ 'r' : '↲ ',
\ 'rm' : '⎬ ',
\ 'r?' : "↲'",
\ '!' : '… ',
\ 't' : '…!',
\ 'r' : '] ',
\ 'rm' : '| ',
\ 'r?' : "]'",
\ '!' : '. ',
\ 't' : '.!',
\}
let _agw.listc={
\ 't': "|-",
\ 's': ".",
\ 'r': "!",
\ 'e': ">",
\ 'p': "<",
\ 'l': "/",
\}
let _agw.languages=[
@ -223,10 +232,15 @@ set belloff=all
if _agw.use_list >= 1
set list
set listchars=tab:├─,space,trail:‼,extends:≫,precedes:≪
let &listchars=
\ "tab:".._agw.listc.t..
\ ",space:".._agw.listc.s..
\ ",trail:".._agw.listc.r..
\ ",extends:".._agw.listc.e..
\ ",precedes:".._agw.listc.p
if _agw.use_list >= 2
set listchars+=eol
let &listchars..="eol:".._agw.listc.l
endif
endif