From ba828329a927239d999ed0af3350524c5ef385b7 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Thu, 19 May 2022 18:01:05 +0200 Subject: [PATCH 1/2] vim: use ctrl-c ctrl-v clipboard, not X11 middle click one --- home/vimrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/home/vimrc b/home/vimrc index 4226a8d..03bc2e7 100644 --- a/home/vimrc +++ b/home/vimrc @@ -37,7 +37,9 @@ set autoindent set history=1000 " set cursorline " use system clipboard as default buffer -set clipboard=unnamed +" unnamedplus corresponds to the + register on Linux, +" representing system clipboard (not X11 clipboard) +set clipboard=unnamedplus " set expandtab set shiftwidth=4 From d74fd749d0e2ab1acccd721141d6393ada75d8dc Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Thu, 19 May 2022 18:01:27 +0200 Subject: [PATCH 2/2] overlay: clean up abandoned entries --- home/overlays.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/home/overlays.nix b/home/overlays.nix index 617bf26..f2ae044 100644 --- a/home/overlays.nix +++ b/home/overlays.nix @@ -3,7 +3,6 @@ ( self: super: rec { - #jami-ring-daemon = super.qt5.callPackage ./ov/jami/ring-daemon.nix {}; myVim = with super; neovim.override { configure = { packages.myVimPackage = with pkgs.vimPlugins; { # loaded on start @@ -27,9 +26,6 @@ }; customRC = builtins.readFile ./vimrc; };}; - # build with debug symbols and in debug mode (less optimized) - opencvDebug = with super; enableDebugging ((opencv3.override { enablePython = true; enableGtk3 = true; enableDocs = true; pythonPackages = pkgs.python3Packages; }).overrideAttrs (oldAttrs: rec { cmakeBuildType = "Debug"; })); - #gnutls = super.callPackage ./ov/gnutls {inherit (super.darwin.apple_sdk.frameworks) Security;}; } )