系统相关
首页 > 系统相关> > Ubuntu常用设置

Ubuntu常用设置

作者:互联网

Ubuntu常用设置

1. System Settings

2. Vim Settings

3. Pycharm设置

"Pycharm中的IdeaVim插件配置 

" set the vim default-register sharing with the clipboard
set clipboard+=unnamed
set history=100000

" copy function in select mode
if has("clipboard")
    vnoremap <C-c> "+y
endif

" Insert mode shortcut 
inoremap <C-h> <Left> 
inoremap <C-j> <Down> 
inoremap <C-k> <Up> 
inoremap <C-l> <Right> 
inoremap <C-a> <Home> 
inoremap <C-e> <End> 
inoremap <C-q> <PageUp> 
inoremap <C-w> <PageDown> 
 
" Quit insert mode 
inoremap jj <Esc> 
inoremap jk <Esc> 
inoremap kk <Esc> 
 
" Move cursor in normal mode 
nnoremap H ^ 
nnoremap L $

标签:常用,set,配置文件,nnoremap,vim,mode,设置,Ubuntu,inoremap
来源: https://blog.csdn.net/weixin_40194088/article/details/114681239