nvim: Fix 'vim:' modeline, add paragraph highlights
Fixed bug when line in todo dropdown starts with `vim:`, `vi:`, or `:ex` which would automatically be read by vim and tried to be set in the editor. Removed modeline reading from vim to fix the bug, and since it provides quite an attack vector anyway. Added Limelight to its startup procedure to highlight the current to-do paragraph.
This commit is contained in:
parent
4774cd5b15
commit
12beacac19
3 changed files with 4 additions and 1 deletions
|
@ -148,6 +148,8 @@ au FocusLost * :wa
|
||||||
" disables showing us the current mode in the command line since airline takes
|
" disables showing us the current mode in the command line since airline takes
|
||||||
" care of it
|
" care of it
|
||||||
set noshowmode
|
set noshowmode
|
||||||
|
" turn off modeline, to ensure security observation
|
||||||
|
set nomodeline
|
||||||
|
|
||||||
" i feel foldlevel 2 is generally pretty usable, for headlines and similar
|
" i feel foldlevel 2 is generally pretty usable, for headlines and similar
|
||||||
set foldlevel=2
|
set foldlevel=2
|
||||||
|
|
|
@ -52,3 +52,4 @@ JIT
|
||||||
Fordism
|
Fordism
|
||||||
embeddedness
|
embeddedness
|
||||||
Zapatista
|
Zapatista
|
||||||
|
essentialism
|
||||||
|
|
|
@ -4,7 +4,7 @@ Description=Todo.md floating vim instance
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=simple
|
||||||
# workaround to allow relative executable invocation (i.e. current users' home dir)
|
# workaround to allow relative executable invocation (i.e. current users' home dir)
|
||||||
ExecStart=/bin/bash -c 'alacritty --title "dropdown-todo" --class "Alacritty,scratchpad" -e nvim -c ":set nonumber norelativenumber noshowmode noruler laststatus=0 noshowcmd shortmess=F" %h/documents/records/todo.md'
|
ExecStart=/bin/bash -c 'alacritty --title "dropdown-todo" --class "Alacritty,scratchpad" -e nvim -c ":set nonumber norelativenumber noshowmode noruler laststatus=0 noshowcmd shortmess=F | :Limelight" %h/documents/records/todo.md'
|
||||||
Restart=always
|
Restart=always
|
||||||
RestartSec=5
|
RestartSec=5
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue