From d2a5bb99293c2a2cc75842e2347f2677969c8b1a Mon Sep 17 00:00:00 2001 From: Aria Nolan Date: Sun, 4 Feb 2024 17:56:33 -0500 Subject: [PATCH] more vim config --- users/tacocat/programs/tmux.nix | 2 ++ users/tacocat/programs/vim.nix | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/users/tacocat/programs/tmux.nix b/users/tacocat/programs/tmux.nix index d5ebebd..0a3f957 100644 --- a/users/tacocat/programs/tmux.nix +++ b/users/tacocat/programs/tmux.nix @@ -10,6 +10,8 @@ terminal = "tmux-256color"; extraConfig = '' set -g focus-events on + set -g allow-passthrough on + set -g set-clipboard on ''; }; } diff --git a/users/tacocat/programs/vim.nix b/users/tacocat/programs/vim.nix index 51441cb..2a28f4d 100644 --- a/users/tacocat/programs/vim.nix +++ b/users/tacocat/programs/vim.nix @@ -30,6 +30,11 @@ set signcolumn=yes colorscheme gruvbox set updatetime=100 + set cursorline + set autoindent + set belloff=all + nnoremap :call system("wl-copy", @") + nnoremap :nohlsearch ''; };