Ugh sway paths on NixOS right now...
This commit is contained in:
parent
3891d87292
commit
516e51d493
|
@ -42,7 +42,7 @@ filetype plugin on
|
|||
set encoding=utf8
|
||||
set tabstop=2 shiftwidth=2 softtabstop=2 noexpandtab
|
||||
set autoindent smartindent
|
||||
set list nostartofline listchars=trail:·,tab:\ \ ,trail:~ fcs=eob:\+
|
||||
set list nostartofline listchars=trail:·,tab:\ \ ,trail:~
|
||||
set linebreak formatoptions=crql1jn " TODO: see if there is more in `:h fo-table`
|
||||
set synmaxcol=200
|
||||
set lazyredraw
|
||||
|
@ -62,6 +62,7 @@ set noautowrite autochdir autoread
|
|||
set nomodeline noshowmode noshowcmd laststatus=0 " TODO: custom modeline and buffer list?
|
||||
set clipboard+=unnamedplus
|
||||
set t_Co=256
|
||||
let &fcs = 'eob: '
|
||||
|
||||
syntax enable
|
||||
colorscheme base16-donokai
|
||||
|
|
|
@ -1,4 +1,2 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
source "$(dirname "$0")/prelude"
|
||||
floating-term sh -c "launch | xargs swaymsg exec --"
|
||||
"$(dirname "$0")/floating-term" sh -c "\"$(dirname "$0")/launch\" | xargs swaymsg exec --"
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
kitty \
|
||||
--single-instance \
|
||||
--class floating_terminal \
|
||||
-o remember_window_size=no \
|
||||
-o initial_window_width=60c \
|
||||
-o initial_window_height=12c \
|
||||
--class floating_terminal \
|
||||
"$@"
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
env WAYLAND_DEBUG=1 FZFP_HEIGHT="100%" floating-term bash -c "fzfp | head -n 1 | wl-copy &"
|
||||
env FZFP_HEIGHT="100%" floating-term bash -c "fzfp | head -n 1 | wl-copy &"
|
||||
|
|
Reference in a new issue