diff options
Diffstat (limited to 'nvf')
| -rw-r--r-- | nvf/nvf.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nvf/nvf.nix b/nvf/nvf.nix index 1c9b64f..33fcc2c 100644 --- a/nvf/nvf.nix +++ b/nvf/nvf.nix @@ -8,6 +8,9 @@ -- `:q` quits all buffers vim.cmd([[cnoreabbrev <expr> q (getcmdtype() == ':' && getcmdline() ==# 'q') ? 'qa' : 'q']]) vim.cmd([[cnoreabbrev <expr> q! (getcmdtype() == ':' && getcmdline() ==# 'q!') ? 'qa!' : 'q!']]) + + -- yank/paste through the system clipboard + vim.opt.clipboard = "unnamedplus" ''; # ui |
