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.
dotfiles/vimrc

32 lines
625 B
VimL

filetype plugin indent on
" show existing tab with 4 spaces width
set tabstop=4
set shiftwidth=4
set expandtab
set backspace=indent,eol,start
3 years ago
" basics
set number
3 years ago
" setting color theme stuff
3 years ago
set background=dark
3 years ago
syntax enable
3 years ago
colorscheme hybrid
3 years ago
" syntax highlighting
3 years ago
let g:go_highlight_types=1
let g:go_highlight_fields=1
let g:go_highlight_functions=1
let g:go_highlight_function_calls=1
let g:go_highlight_operators=1
let g:go_highlight_extra_types=1
" nerdtree settings
let NERDTreeHighlightCursorLine=1
" nerdtree binds
nnoremap <C-n> :NERDTree<CR>
nnoremap <C-t> :NERDTreeToggle<CR>
nnoremap <C-f> :NERDTreeFind<CR>