vim

starlitxiling Lv3

Vim

在命令模式下splitvsplit加文件名可以新开窗口,但是没有补全(应该是要装插件)。

vimrc配置:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
syntax on
set number
filetype indent on
set shiftwidth=4
set softtabstop=4
set ignorecase


" 设置 <Space> 键为 leader 键
let mapleader = " "
filetype plugin indent on

" 使用 vim-plug 的示例
call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-commentary'
" 其他插件...
call plug#end()


" Normal 模式下,<leader>/ 注释或取消注释当前行
nnoremap <leader>/ :Commentary<CR>

" Visual 模式下,<leader>/ 注释或取消注释选中行
xnoremap <leader>/ :Commentary<CR>


inoremap <CapsLock> <Esc>
nnoremap <CapsLock> <Esc>
cnoremap <CapsLock> <Esc>

LunarVim

命令模式下输入W会显示一下东西,和vim不一样。

  • Title: vim
  • Author: starlitxiling
  • Created at : 2023-09-20 22:54:49
  • Updated at : 2025-01-06 15:15:39
  • Link: http://starlitxiling.github.io/2023/09/20/vim/
  • License: This work is licensed under CC BY-NC-SA 4.0.
Comments
On this page
vim