Neovim: fix clipboard on wayland

This commit is contained in:
Marko Korhonen 2022-11-17 09:18:56 +02:00
parent 2481671803
commit 6a91c7b2ce
Signed by: FunctionalHacker
GPG Key ID: A7F78BCB859CD890
1 changed files with 20 additions and 1 deletions

View File

@ -11,7 +11,7 @@ o.guifont = "Fira Code:h14"
g.neovide_hide_mouse_when_typing = true
-- Enable cursor particles in neovide
g.neovide_cursor_vfx_mode = 'railgun'
g.neovide_cursor_vfx_mode = "railgun"
-- Floating window transparency
o.winblend = 10
@ -53,3 +53,22 @@ g.mapleader = " "
o.tabstop = 4
o.shiftwidth = 4
o.smartindent = true
-- Wayland clipboard provider that strips carriage returns (GTK3 issue).
-- This is needed because currently there's an issue where GTK3 applications on
-- Wayland contain carriage returns at the end of the lines (this is a root
-- issue that needs to be fixed).
vim.cmd([[
let g:clipboard = {
\ 'name': 'wayland-strip-carriage',
\ 'copy': {
\ '+': 'wl-copy --foreground --type text/plain',
\ '*': 'wl-copy --foreground --type text/plain --primary',
\ },
\ 'paste': {
\ '+': {-> systemlist('wl-paste --no-newline | tr -d "\r"')},
\ '*': {-> systemlist('wl-paste --no-newline --primary | tr -d "\r"')},
\ },
\ 'cache_enabled': 1,
\ }
]])