Upload .vimrc with huggingface_hub
Browse files
.vimrc
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
" Enables mouse support in all modes (Normal, Insert, Visual, etc.) for Vim.
|
2 |
+
" This allows you to scroll, select text, and place the cursor with the mouse.
|
3 |
+
set mouse=a
|
4 |
+
" Sets the terminal's mouse encoding to xterm2. This setting improves compatibility and functionality.
|
5 |
+
" (echo $TERM returns xterm-256color). If you encounter issues, try `set ttymouse=sgr`
|
6 |
+
set ttymouse=xterm2
|