spaces per TAB vim.opt.softtabstop = 4 -- number of spacesin tab when editing vim.opt.shiftwidth = 4 -- insert 4 spaces on a tab vim.opt.expandtab = true -- tabs are spaces, mainly because of python -- UI config vim.opt.number = true -- show absolute number vim.opt....
set tabstop=4 " Tab = 4 空格 setsofttabstop=4 set shiftwidth=4 set expandtab " Tab 键在不同的编辑器缩进不一致,自动将 Tab 转为空格 " 外观 set cursorline " 光标所在的当前行高亮 "let mapleader = "\" " leader 键改为 空格键 set number "显示绝对行号 set rnu "显示相对行号 set nowrap...
vim.opt.tabstop =4-- number of visual spaces per TAB --vim.opt.softtabstop = 4 -- number of spacesin tab when editing vim.opt.shiftwidth =4-- insert 4 spaces on a tab vim.opt.expandtab =true-- tabs are spaces, mainly because of python vim.opt.cindent=true -- UI config vim.o...
SPACEscToggle spell suggestion a SPACEdwFind adjacent duplicated word SPACEttConvert every 4 Spaces to a tab SPACEoFold SPACE-Previous quick-fix position SPACE+Next quick-fix position \pShow the path of the current file SPACE/Create a new terminal below the current window ...
SPACEscToggle spell suggestion a SPACEdwFind adjacent duplicated word SPACEttConvert every 4 Spaces to a tab SPACEoFold SPACE-Previous quick-fix position SPACE+Next quick-fix position \pShow the path of the current file SPACE/Create a new terminal below the current window ...
set laststatus=2 "开启鼠标 set mouse=a "tab数量 set ts=2 "set tabstop=2 syntax on "相对行号 set relativenumber "滚动时距离底部有6行 set scrolloff=6 "当前行下划线 "set cursorline "换行 set wrap "搜索结果高亮 set hlsearch "边输入边高亮 set incsearch "防止每...
If set to false, then tabline will be displayed -- only when there are more than 1 tab. (see :h showtabline) globalstatus = false, -- enable global statusline (have a single statusline -- at bottom of neovim instead of one for every window). -- This feature is only available ...
setup({ -- this config assumes you have OPENAI_API_KEY environment variable set openai_params = { -- NOTE: model can be a function returning the model name -- this is useful if you want to change the model on the fly -- using commands -- Example: -- model = function() -- if ...
= 1 let g:airline#extensions#tabline#buffer_idx_mode = 1 let g:airline#extensions#tabline#buffer_idx_format = { \ '0': '0 ',\ '1': '1 ',\ '2': '2 ',\ '3': '3 ',\ '4': '4 ',\ '5': '5 ',\ '6': '6 ',\ '7': '7 ',\ '8': '8 ',
prettier.tabWidth (default: 2) Number of spaces it should use per tab prettier.singleQuote (default: false) If true, will use single instead of double quotes prettier.trailingComma (default: 'none') Controls the printing of trailing commas wherever possible. Valid options: ...