diff options
Diffstat (limited to '.vim/general.vim')
| -rw-r--r-- | .vim/general.vim | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/.vim/general.vim b/.vim/general.vim deleted file mode 100644 index 84bafbf..0000000 --- a/.vim/general.vim +++ /dev/null @@ -1,71 +0,0 @@ -" .vimrc#General settings -set exrc -set secure -set title -set noshowmode -set autowrite -set inccommand=split -set noshowcmd -" set autochdir " automatically sets cwd to the dir containing the file in the current buffer -set hidden -set notimeout -set list -set listchars+=trail:¬ " ,space:• -set iskeyword-=- - -set encoding=utf-8 nobomb -" set nocompatible -set number -let &showbreak='↪ ' -set visualbell -set noerrorbells -set hlsearch -set smartcase -set ignorecase -set incsearch -" set cmdheight=2 -set pumheight=10 -set lazyredraw -set mouse=a -set clipboard+=unnamedplus " share OSX clipboard -set backspace=indent,eol,start " allow backspace in INSERT mode -set signcolumn=yes -set cursorline -" set cursorcolumn -set colorcolumn=80 -set updatetime=300 -set splitbelow -set foldlevel=1 -set nofoldenable - -" For conceal markers. -if has('conceal') - " set conceallevel=2 concealcursor=nv - set conceallevel=1 concealcursor= -endif - -set backupdir=$XDG_CACHE_HOME -set directory=$XDG_CACHE_HOME -if exists('&undodir') - set undodir=$XDG_CACHE_HOME -endif - -" pane divider chars -set fillchars=fold:-,vert:\│ - -"" colorscheme options -if has("termguicolors") - set termguicolors -endif - -filetype plugin indent on -if has('syntax') && !exists('g:syntax_on') - syntax enable -endif - -" some defaults -" set ts=8 sts=0 et sw=4 sta -set shiftround - -set diffopt+=algorithm:patience -set path+=expand('%:h:p') |