Skip to content

Instantly share code, notes, and snippets.

@idursun
Created June 19, 2015 19:02
Show Gist options
  • Save idursun/0a7e04b650ccea9d7983 to your computer and use it in GitHub Desktop.
Save idursun/0a7e04b650ccea9d7983 to your computer and use it in GitHub Desktop.
My Settings
set nocompatible " be iMproved
filetype off " required!
:syntax on
set tabstop=4
set shiftwidth=4
set expandtab
set guifont=Consolas:h10:cTURKISH
set smartindent
set autoindent
set number
set window=39
set lines=40
set columns=140
set nowrap
set hls
nnoremap <C-S-t> :FufFile<CR>
set ruler
set incsearch
set backspace=2
imap <C-s> <ESC>:w<CR>
colors evening
let mapleader=" "
set rtp+=~/vimfiles/bundle/vundle/
let path='~/vimfiles/bundle'
call vundle#begin(path)
Plugin 'gmarik/vundle'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'kchmck/vim-coffee-script'
Plugin 'tpope/vim-surround'
Plugin 'kien/rainbow_parentheses.vim'
Plugin 'ervandew/supertab'
Plugin 'Raimondi/delimitMate'
Plugin 'L9'
Plugin 'FuzzyFinder'
Plugin 'surround.vim'
Plugin 'derekwyatt/vim-scala'
call vundle#end()
filetype plugin indent on " required!
autocmd BufRead,BufNewFile *.scala set filetype=scala
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment