Compare commits

...

3 commits

Author SHA1 Message Date
Cat /dev/Nulo 80b6d4eae4 captive-browser 2022-08-02 11:13:17 +02:00
Cat /dev/Nulo 57bed2a06d Revert "kak: Usar kakoune.cr en vez de fzf.kak"
This reverts commit c4c5b5fc9a.
2022-08-02 11:12:47 +02:00
Cat /dev/Nulo 82f84e88ea Revert "kak: Borrar fzf.kak completamente"
This reverts commit f99bc2ac10.
2022-07-13 20:25:06 -03:00
6 changed files with 54 additions and 37 deletions

View file

@ -0,0 +1,2 @@
#!/bin/sh
echo "$dns"

View file

@ -0,0 +1,27 @@
# browser is the shell (/bin/sh) command executed once the proxy starts.
# When browser exits, the proxy exits. An extra env var PROXY is available.
#
# Here, we use a separate Chrome instance in Incognito mode, so that
# it can run (and be waited for) alongside the default one, and that
# it maintains no state across runs. To configure this browser open a
# normal window in it, settings will be preserved.
browser = """
chromium-browser \
--user-data-dir="$HOME/.chromium-captive" \
--proxy-server="socks5://$PROXY" \
--host-resolver-rules="MAP * ~NOTFOUND , EXCLUDE localhost" \
--no-first-run --new-window --incognito \
http://example.com
"""
# dhcp-dns is the shell (/bin/sh) command executed to obtain the DHCP
# DNS server address. The first match of an IPv4 regex is used.
# IPv4 only, because let's be real, it's a captive portal.
#
# `wlan0` is your network interface.
#
dhcp-dns = "doas udhcpc -i wlan0 -s ~/.config/captive-browser.dump-dns.sh"
# socks5-addr is the listen address for the SOCKS5 proxy server.
socks5-addr = "localhost:1666"

View file

@ -57,26 +57,11 @@ hook global WinSetOption filetype=go %{
# Usar Foot
# ------------
eval %sh{
# https://github.com/alexherbo2/kakoune.cr/issues/33#issuecomment-1112160325
if test -n "$TMUX"; then echo "
define-command tmux-terminal-popup -params 1.. -shell-completion -docstring '
tmux-terminal-popup <program> [<arguments>]: create a new terminal as a tmux popup
The program passed as argument will be executed in the new popup' \
%{
tmux-terminal-impl 'display-popup -E -h 75% -w 75% -d #{pane_current_path}' %arg{@}
}
alias global terminal-popup tmux-terminal-popup
"
elif test -n "$WAYLAND_DISPLAY"; then echo '
hook global KakBegin .* %{ set-option global termcmd "footclient sh -c" }
define-command terminal-popup -params 1.. -shell-completion %{
set-option global termcmd "footclient --app-id=fzf sh -c"
wayland-terminal %arg{@}
set-option global termcmd "footclient sh -c"
}
'
fi
hook global KakBegin .* %{ set-option global termcmd "footclient sh -c" }
define-command fzf-terminal -params 1.. -shell-completion %{
set-option global termcmd "footclient --app-id=fzf sh -c"
wayland-terminal %arg{@}
set-option global termcmd "footclient sh -c"
}
# ------------
@ -117,18 +102,25 @@ hook -group sleuth global BufOpenFile .* %{ sleuth }
hook -group sleuth global BufWritePost .* %{ sleuth }
# ------------
# Kakoune.cr
# FZF
# ------------
source "%val{config}/plugins/fzf.kak/rc/fzf.kak"
evaluate-commands %sh{
kcr init kakoune
find -L "$kak_config/plugins/fzf.kak/rc/modules/" -type f -name '*.kak' -exec printf 'source "%s"\n' {} \;
}
map -docstring 'new client' global normal <c-t> ': new<ret>'
map -docstring 'terminal' global normal <c-ret> ': connect terminal<ret>'
map -docstring 'file picker' global normal <c-f> ': connect terminal-popup kcr fzf files -- -H<ret>'
map -docstring 'buffer picker' global normal <c-b> ': connect terminal-popup kcr fzf buffers<ret>'
map -docstring 'grep picker' global normal <c-g> ': connect terminal-popup kcr fzf grep<ret>'
hook global ModuleLoaded fzf %{
set-option global fzf_terminal_command 'fzf-terminal kak -c %val{session} -e "%arg{@}"'
}
hook global ModuleLoaded fzf-file %{
set-option global fzf_file_command 'rg -L --hidden --files --glob !.git'
}
hook global ModuleLoaded fzf-grep %{
set-option global fzf_grep_command 'rg'
}
map -docstring 'search files' global user f ': fzf-mode<ret>f'
map -docstring 'search buffers' global user b ': fzf-mode<ret>b'
map -docstring 'grep files' global user g ': fzf-mode<ret>g'
# ------------
# Buffer switching

@ -0,0 +1 @@
Subproject commit 62a3de575cceeaf9f556b824123a418def8bea7b

3
.gitmodules vendored
View file

@ -4,6 +4,9 @@
[submodule ".config/kak/plugins/zig.kak"]
path = .config/kak/plugins/zig.kak
url = https://gitea.nulo.in/Nulo/zig.kak
[submodule ".config/kak/plugins/fzf.kak"]
path = .config/kak/plugins/fzf.kak
url = https://gitea.nulo.in/Nulo/fzf.kak
[submodule ".config/kak/plugins/kakoune-buffers"]
path = .config/kak/plugins/kakoune-buffers
url = https://github.com/Delapouite/kakoune-buffers

View file

@ -28,13 +28,5 @@ Probablemente incompleto.
### Alpine
```sh
apk add zsh zsh-vcs fzf kak
```
#### Para editor mejorado
(requiere tmux o Wayland+foot)
```sh
apk add kakoune-cr kakoune-cr-commands bat fd
apk add zsh zsh-vcs fzf vis
```