diff --git a/etc/systemd/system/x11vnc.service b/etc/systemd/system/x11vnc.service new file mode 100644 index 0000000..f8b2ec6 --- /dev/null +++ b/etc/systemd/system/x11vnc.service @@ -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 diff --git a/home/user/.config/nvim/lua/base/lazy.lua b/home/user/.config/nvim/lua/base/lazy.lua index 7cc49ba..8168cce 100644 --- a/home/user/.config/nvim/lua/base/lazy.lua +++ b/home/user/.config/nvim/lua/base/lazy.lua @@ -196,6 +196,9 @@ local plugins = { require('neodev').setup() end }, + { + 'chaoren/vim-wordmotion', + }, { 'toppair/peek.nvim', enabled = vim.fn.executable "deno" == 1,