nvim: add plugin, x11nvc: add systemd service

This commit is contained in:
TheK4n 2023-08-29 23:39:30 +03:00
parent 42dcbcea83
commit e2e7f25ca8
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,13 @@
[Unit]
Description=VNC Server for X11
Requires=graphical.target
After=graphical.target
[Service]
Type=simple
User=kan
ExecStart=/usr/bin/x11vnc -noxdamage -rfbauth /home/kan/.vnc/passwd -display :0 -forever
Restart=on-failure
[Install]
WantedBy=graphical.target

View File

@ -196,6 +196,9 @@ local plugins = {
require('neodev').setup() require('neodev').setup()
end end
}, },
{
'chaoren/vim-wordmotion',
},
{ {
'toppair/peek.nvim', 'toppair/peek.nvim',
enabled = vim.fn.executable "deno" == 1, enabled = vim.fn.executable "deno" == 1,