minor update

This commit is contained in:
Alexander Navarro 2025-04-25 12:26:47 -04:00
parent dfeb4b9516
commit fac9010c68

View file

@ -17,19 +17,19 @@ set hlsearch
set incsearch set incsearch
set smartcase set smartcase
" system clipboard
set clipboard+=unnamed
let mapleader=" " let mapleader=" "
let g:mapleader=" " let g:mapleader=" "
" system clipboard
set clipboard+=unnamedplus
set ideaput
"" Plugins "" Plugins
" --- Enable IdeaVim plugins https://jb.gg/ideavim-plugins " --- Enable IdeaVim plugins https://jb.gg/ideavim-plugins
" set sneak " set sneak
set highlightedyank set highlightedyank
set exchange " set exchange
set commentary set commentary
set matchit set matchit
set mini-ai set mini-ai
@ -56,11 +56,20 @@ nmap <leader>e :NERDTree<CR>
" surround " surround
Plug "tpope/vim-surround" Plug "tpope/vim-surround"
" Mappings
" Choose if vim or ide will handle the mapping
" Allows to set text formatting in markdown
sethandler <C-b> n:vim i-v:ide
sethandler <C-i> n:vim i-v:ide
" Don't use Ex mode, use Q for formatting. " Don't use Ex mode, use Q for formatting.
map Q gq map Q gq
" Prevent movement " Prevent movement
nmap <Space> <nop> nmap <Space> <nop>
vmap <Space> <nop> vmap <Space> <nop>
vmap p "_dP
let g:WhichKeyDesc_Nop = "<Space>" let g:WhichKeyDesc_Nop = "<Space>"
"" find "" find