configure ion

This commit is contained in:
Kujiu 2023-10-18 02:50:18 +02:00
parent fe8c612eda
commit e8d47a7dec
Signed by: kujiu
GPG Key ID: ABBB2CAC6855599F
9 changed files with 89 additions and 4 deletions

View File

@ -11,7 +11,7 @@ set -x COLORFGBG "default;default"
set -x VISUAL "nvim"
set -x EDITOR "lvim"
set -x PAGER "nvimpager"
set -x BROWSER "firefox"
set -x BROWSER "elinks"
set -x PATH ~/.local/bin ~/.cargo/bin ~/go/bin /usr/sbin /sbin /usr/local/sbin /usr/local/bin /usr/bin /bin /usr/games
set -x NOTMUCH_CONFIG ~/.config/notmuch/notmuch-config

78
common/.config/ion/initrc Normal file

File diff suppressed because one or more lines are too long

View File

@ -13,6 +13,7 @@ lvim.plugins = {
{"ChiliConSql/neovim-stylus", event="BufRead"},
{"digitaltoad/vim-pug", event="BufRead"},
{"pirmd/gemini.vim", event="BufRead"},
{"vmchale/ion-vim", event="BufRead"},
{"dpelle/vim-Grammalecte"},
{"vigoux/LanguageTool.nvim"},
{"chaimleib/vim-renpy", event="BufRead"},

View File

@ -21,6 +21,7 @@ require("lazy").setup({
{"ChiliConSql/neovim-stylus", event="BufRead"},
{"digitaltoad/vim-pug", event="BufRead"},
{"pirmd/gemini.vim", event="BufRead"},
{"vmchale/ion-vim", event="BufRead"},
{"dpelle/vim-Grammalecte"},
{"vigoux/LanguageTool.nvim"},
{"chaimleib/vim-renpy", event="BufRead"},

View File

@ -81,7 +81,7 @@ style = 'bg:bg1 fg:light_green'
[character]
success_symbol = '[I](bold fg:green bg:bg2)'
error_symbol = '[✗](bold fg:red bg:bg2)'
vimcmd_symbol = '[V](bold fg:magenta bg:bg2)'
vimcmd_symbol = '[N](bold fg:magenta bg:bg2)'
vimcmd_replace_one_symbol = '[r](bold fg:cyan bg:bg2)'
vimcmd_replace_symbol = '[R](bold fg:blue bg:bg2)'
vimcmd_visual_symbol = '[V](bold fg:magenta bg:bg2)'

View File

@ -82,7 +82,7 @@ $DOCKER_BASE_URL = "unix://var/run/docker.sock"
$VISUAL = "nvim"
$EDITOR = "lvim"
$PAGER = "nvimpager"
$BROWSER = "firefox"
$BROWSER = "elinks"
$PATH = [
p"~/.local/bin",
p"~/.cargo/bin",

View File

@ -0,0 +1,5 @@
#!/usr/bin/env ion
#
alias tsumugi = "mpv https://azuracast.mahoro-net.org/listen/tsumugi/radio.mp3"
alias mpc = 'mpc -f "%title%[ -%album%]\n\r%artist%[ - %performer%]\n\r%file%"'
alias androidcast='adb shell \"while true; screenrecord --output-format=h264 -; end\" | ffplay -framerate 60 -probesize 32 -sync video -'

View File

@ -1,6 +1,6 @@
#!/usr/bin/env xonsh
#
aliases["aerc"] = "TERM=xterm-direct command aerc"
aliases["aerc"] = "TERM=xterm-direct aerc"
aliases["newsboat"] = "TERM=tmux-256color newsboat"
aliases["pms"] = "TERM=xterm-direct pms"
aliases["poezio"] = "TERM=tmux-256color poezio"

View File