This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "nvchad.mappings" | |
| -- Disables Neovim from capturing the mouse for Visual Mode | |
| -- 'n' means mouse works in Normal mode (for clicking to move cursor) | |
| -- 'i' means mouse works in Insert mode | |
| -- Leaving out 'v' prevents it from entering Visual Mode on drag | |
| vim.opt.mouse = "ni" | |
| -- Disable default unnamedplus clipboard | |
| vim.opt.clipboard = "" |