summaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorSanto Cariotti <dcariotti24@gmail.com>2020-05-17 07:36:42 +0000
committerSanto Cariotti <dcariotti24@gmail.com>2020-05-17 07:36:42 +0000
commitd5e184e356e1c58fc524fb994462411074ef05f2 (patch)
tree6d36b3c6d6a61b44063aa71e74cd4f56c9bd7f4f /.vimrc
parent5db37ca72b16392cf7660bbc3fd4c5343f35c6b0 (diff)
chore: order vim files
Diffstat (limited to '.vimrc')
-rwxr-xr-x.vimrc67
1 files changed, 0 insertions, 67 deletions
diff --git a/.vimrc b/.vimrc
deleted file mode 100755
index 957cd2b..0000000
--- a/.vimrc
+++ /dev/null
@@ -1,67 +0,0 @@
-set rtp+=~/.vim/bundle/Vundle.vim
-call vundle#begin()
-Plugin 'VundleVim/Vundle.vim'
-
-Plugin 'rust-lang/rust.vim'
-Plugin 'airblade/vim-gitgutter' " display git status of the file
-Plugin 'vim-airline/vim-airline' " airline at bottom with insert, name, line etc.
-Plugin 'junegunn/fzf', {'dir': '~/.fzf', 'do': './install --all'} | Plugin 'junegunn/fzf.vim' " fuzzy finder
-Plugin 'luochen1990/rainbow' " color parentheses
-Plugin 'dense-analysis/ale' " checker syntax
-
-augroup remember_folds
- autocmd!
- autocmd BufWinLeave * mkview
- autocmd BufWinEnter * silent! loadview
-augroup END
-
-set number " number of the current line
-set relativenumber " relative number, ..-2 -1 x 1 2, where x is current line
-set mouse=a " click with mouse
-set tabstop=4
-set shiftwidth=4
-set expandtab " convert tabs in spaces
-set ai " auto indent
-set autoread
-set encoding=utf-8
-set history=1000
-set wildignore+=*.pyc
-set wrap
-set hlsearch " highlight search
-set incsearch " highlight search while type
-set nowritebackup
-set laststatus=2
-set cursorline
-set list " spaces as characters
-set listchars=eol:⏎,tab:»·,trail:ˑ,nbsp:⎵
-set textwidth=80
-set colorcolumn=80
-
-nnoremap tn :tabnew<CR>
-nnoremap ve :Vexplore<CR>
-nnoremap di ciw
-nnoremap rt :RainbowToggle<CR>
-
-" mapping fzf commands
-" ff = open files explorer
-" co = open commits explorer
-" gf = open git ls-files
-" gs = open git status
-nnoremap ff :Files .<CR>
-nnoremap co :Commits<CR>
-nnoremap gf :GFiles<CR>
-nnoremap gs :GFiles?<CR>
-let g:fzf_preview_window = 'right:70%'
-let g:ale_fix_on_save = 1
-
-
-call vundle#end() " required
-filetype plugin indent on " required
-set nocompatible " be iMproved, required
-filetype off " required
-
-syntax on
-
-colorscheme miramare
-"colorscheme gruvbox-hard
-set showcmd " show commands at bottom