This commit is contained in:
2020-02-01 22:41:11 +01:00
parent adb28c10f9
commit 72c5fd326c
3 changed files with 41 additions and 0 deletions

4
.gitignore vendored
View File

@@ -3,3 +3,7 @@
!.zshrc !.zshrc
!.sshkeys/* !.sshkeys/*
!.sshkeys !.sshkeys
!.vimrc
!.vim
!.vim/*

6
.vim/.netrwhist Normal file
View File

@@ -0,0 +1,6 @@
let g:netrw_dirhistmax =10
let g:netrw_dirhist_cnt =4
let g:netrw_dirhist_1='/usr/local/bin'
let g:netrw_dirhist_2='/Users/beppe/git/advancedprogramming/Vue/femtalks/src/components/Views'
let g:netrw_dirhist_3='/Users/beppe/git/advancedprogramming/Vue'
let g:netrw_dirhist_4='/Users/beppe/git/advancedprogramming/Vue/femtalks'

31
.vimrc Normal file
View File

@@ -0,0 +1,31 @@
set clipboard=unnamed "Enable clipboard
filetype plugin indent on "Enable indent plugin
syntax enable "Enable syntax coloring
syntax on "Turn syntax coloring on
:color desert "Set desert syntax coloring
set nocompatible "Allow Vim-only settings even if they break vi keybindings.
:filetype on "Enable filetype detection
set incsearch "Find as you type
set ignorecase "Ignore case in search
set scrolloff=5 "Number of lines to keep above/below cursor
set smartcase "Only ignore case when all letters are lowercase
set number "Show line numbers
set wildmode=longest,list "Complete longest string, then list alternatives
set fileformats=unix "Use Unix line endings
set smartindent "Smart autoindenting on new line
set smarttab "Respect space/tab settings
set history=300 "Number of commands to remember
set backspace=2 "Use standard backspace behavior
set hlsearch "Highlight matches in search
set ruler "Show line and column number
set formatoptions=1 "Don't wrap text after a one-letter word
set linebreak "Break lines when appropriate
set autoindent "Auto indent based on previous line
"Prepare tab/space indent settings
set tabstop=4 "Set Tab width to 4
set shiftwidth=4 "Indents will have width of 4
set softtabstop=4 "Set the number of columns for tab
set expandtab "Expand tabs to spaces
execute pathogen#infect()