Skip to content

Instantly share code, notes, and snippets.

View igorbabko's full-sized avatar
🇺🇦

Igor Babko igorbabko

🇺🇦
View GitHub Profile
{
"bold_folder_labels": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"font_face": "Fira Code",
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
snippet met
public function ${1}(${2})
{
${3}
}
snippet pmet
protected function ${1}(${2})
{
${3}
set backspace=indent,eol,start " make backspace behave like every other editor
set number " let's activate line numbers
set linespace=25 " mac-vim specific lineheight
set noerrorbells visualbell t_vb= " remove damn bell
set autowriteall " autosave files when closing
let mapleader = ',' " the default leader is \, but a comma is much better
set shiftwidth=4 " indents will have a width of 4
set softtabstop=4 " sets the number of columns for a tab
set expandtab " expand tabs to spaces
set tabstop=4 " the width of a tab is set to 4.