diff options
| -rw-r--r-- | .config/nvim/lua/init/01-options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/lua/init/01-options.lua b/.config/nvim/lua/init/01-options.lua index 41f7e61..4072d97 100644 --- a/.config/nvim/lua/init/01-options.lua +++ b/.config/nvim/lua/init/01-options.lua @@ -79,7 +79,7 @@ O.confirm = true O.clipboard = 'unnamed' -- Prefer 'tmux' to 'wl-copy' or 'pbcopy' if in tmux. -if vim.env.tmux then +if vim.env.TMUX then vim.g.clipboard = 'tmux' end |
