mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-26 20:35:40 +00:00
31 lines
563 B
VimL
Executable File
31 lines
563 B
VimL
Executable File
set background=dark
|
|
set clipboard+=unnamedplus
|
|
" set colorcolumn=80
|
|
set ignorecase smartcase
|
|
set incsearch
|
|
set list listchars=tab:⇒\ ,trail:·
|
|
set mouse+=a
|
|
set noswapfile
|
|
set nowrap
|
|
set number
|
|
set relativenumber
|
|
set scrolloff=8
|
|
set termguicolors
|
|
|
|
" hide mode as it's shown in lightline
|
|
set noshowmode
|
|
|
|
syntax on
|
|
|
|
" open new split panes to right and below (as you probably expect)
|
|
set splitright
|
|
set splitbelow
|
|
|
|
" colorscheme nord
|
|
" colorscheme dracula
|
|
colorscheme challenger_deep
|
|
|
|
|
|
" terminal disable linenumber
|
|
au TermOpen * setlocal nonumber norelativenumber
|