-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
43 lines (28 loc) · 689 Bytes
/
.vimrc
File metadata and controls
43 lines (28 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
syntax on
filetype plugin indent on
set tabstop=4 softtabstop=4 shiftwidth=4 expandtab scrolloff=10
set laststatus=2
" backspace
set backspace=indent,eol,start
" leader key
let mapleader = ','
" no backups
set nobackup noswapfile
" identation
set autoindent
" open new splits on right and bottom
set splitbelow
set splitright
set ignorecase smartcase
" line numbers, ruler, cursorline
set nu ruler cursorline
set t_Co=256
set hlsearch incsearch
" buffers
" nmap <silent> <tab> :bn<CR>
" nmap <silent> <s-tab> :bp<CR>
colorscheme jellybeans
" fly through buffers
nnoremap <leader>l :ls<CR>:b<space>
" python
au filetype python :iabbrev ipdb import ipdb; ipdb.set_trace()