mirror of
https://github.com/oxalica/nil.git
synced 2024-11-22 11:22:46 +03:00
20 lines
377 B
VimL
20 lines
377 B
VimL
" Basic settings for tests
|
|
set mouse=a
|
|
set number
|
|
set cursorline
|
|
set expandtab
|
|
set shiftwidth=2
|
|
set softtabstop=-1
|
|
set signcolumn=yes
|
|
set completeopt=menuone,noselect
|
|
set ttimeoutlen=1
|
|
set autoindent
|
|
|
|
" Always show statusline.
|
|
set laststatus=2
|
|
set statusline=%f\ %m%r%y\ %LL\ %{LspStatus()}%<%=\ 0x%-4.B\ %-16.(%lL,%cC%V,%oB%)\ %P
|
|
|
|
function LspStatus()
|
|
return ''
|
|
endfunction
|