Alex Yatskov
d47e89c0c8
commit 35bbfb270aaa17ab0bea37b50f85068b28e1d1a9 Author: Alex Yatskov <alex@foosoft.net> Date: Wed Oct 13 20:05:12 2021 -0700 Disable snippets commit bc03ffc0c123149fce2c23f29a61c7a7f2d6a730 Author: Alex Yatskov <alex@foosoft.net> Date: Wed Oct 13 17:51:23 2021 -0700 Switch to nvim lsp
62 lines
962 B
VimL
62 lines
962 B
VimL
set nocompatible
|
|
set termguicolors
|
|
set t_Co=16
|
|
|
|
filetype indent plugin on
|
|
colorscheme solarized8
|
|
syntax enable
|
|
|
|
set autoindent
|
|
set autoread
|
|
set autowrite
|
|
set background=dark
|
|
set backspace=indent,eol,start
|
|
set belloff=all
|
|
set complete-=i
|
|
set encoding=utf-8
|
|
set expandtab
|
|
set fileformats=unix,dos,mac
|
|
set formatoptions=tcqj
|
|
set guicursor=n:blinkon0
|
|
set hidden
|
|
set history=10000
|
|
set hlsearch
|
|
set ignorecase
|
|
set incsearch
|
|
set laststatus=2
|
|
set linebreak
|
|
set modelines=0
|
|
set mousemodel=popup
|
|
set nobackup
|
|
set nofoldenable
|
|
set nofsync
|
|
set nolangremap
|
|
set nomodeline
|
|
set noswapfile
|
|
set nowrap
|
|
set nowritebackup
|
|
set nrformats=bin,hex
|
|
set number
|
|
set ruler
|
|
set ruler
|
|
set scrolloff=5
|
|
set shiftround
|
|
set shiftwidth=4
|
|
set shortmess+=I
|
|
set showcmd
|
|
set sidescroll=1
|
|
set smartcase
|
|
set smarttab
|
|
set tabpagemax=50
|
|
set tabstop=4
|
|
set ttimeout
|
|
set ttimeoutlen=50
|
|
set ttyfast
|
|
set updatetime=300
|
|
set wildignore+=*/tmp/*
|
|
set wildmenu
|
|
|
|
if &shell =~ 'bin/fish'
|
|
set shell=/bin/sh
|
|
endif
|