You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.1 KiB
VimL

set breakindent
set cmdheight=2
set cpoptions+=$ " Add a $ to the end of a selection
set cpoptions+=J " 2 spaces after a sentence for easier text manupulation
set cursorline
set expandtab
set fileformat=unix
set fillchars=
set foldignore=
set foldlevelstart=1 " deactivate folding on fileload
set foldnestmax=20 " max 20 levels of folding
set foldmethod=expr
set foldexpr=nvim_treesitter#foldexpr()
set gdefault
set grepprg=ag " use ag for grepping
set hidden
set ignorecase
set infercase
set lazyredraw
set list!
set listchars=extends,precedes,tab:▸\ ,trail
set mouse=a
set nobackup
set noerrorbells
set nofoldenable
set noshowmode
set noswapfile
set nowrap
set nowritebackup
set pastetoggle=<F2>
set relativenumber
set scrolljump=5
set scrolloff=3
set shiftround
set shiftwidth=2
set shortmess+=c
set showbreak=\\\\\
set showmatch
set sidescroll=10
set sidescrolloff=5
set smartcase
set softtabstop=2
set tabstop=2
set updatetime=300
set virtualedit=all
set visualbell
set wildmode=list:longest,list:full
set wrapscan
" language and colorscheme
set background=dark
set termguicolors
let g:gruvbox_italic=1
colorscheme gruvbox
language en_US.UTF-8