mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-24 22:58:38 +01:00
neovim: Remove unnecessary comments
The built-in help and https://neovim.io/doc/user/options.html can be used instead if an option isn't known at read time.
This commit is contained in:
parent
19bb580cb0
commit
da29bcbf4d
@ -60,17 +60,17 @@
|
|||||||
set number
|
set number
|
||||||
set linebreak
|
set linebreak
|
||||||
set clipboard=unnamedplus
|
set clipboard=unnamedplus
|
||||||
set fileencoding=utf-8 " Ensure that we always save files as utf-8
|
set fileencoding=utf-8
|
||||||
set fileencodings=utf-8,sjis " Automatically open shiftjis files with their proper encoding
|
set fileencodings=utf-8,sjis
|
||||||
set spelllang=en_us,cjk " Don't show errors for CJK characters
|
set spelllang=en_us,cjk
|
||||||
set noshowmode " Disable the --MODE-- text (enable if not using the status line)
|
set noshowmode
|
||||||
set mouse=a
|
set mouse=a
|
||||||
set ignorecase " By default use case-insensitive search (combine with smartcase)
|
set ignorecase
|
||||||
set smartcase " Make search case-sensitive when using capital letters
|
set smartcase
|
||||||
set scrolloff=1 " The minimal number of rows to show when scrolling up/down
|
set scrolloff=1
|
||||||
set sidescrolloff=5 " The minimal number of columns to show when scrolling left/right
|
set sidescrolloff=5
|
||||||
set tabstop=4 " Show a tab character as 4 spaces
|
set tabstop=4
|
||||||
set shiftwidth=4 " Make autoindent appear as 4 spaces
|
set shiftwidth=4
|
||||||
|
|
||||||
set foldmethod=indent
|
set foldmethod=indent
|
||||||
set foldlevelstart=99
|
set foldlevelstart=99
|
||||||
|
Loading…
Reference in New Issue
Block a user