diff options
-rw-r--r-- | Xdefaults | 10 | ||||
-rw-r--r-- | gitconfig | 7 | ||||
-rw-r--r-- | screenrc | 7 | ||||
-rw-r--r-- | vimrc | 25 |
4 files changed, 49 insertions, 0 deletions
diff --git a/Xdefaults b/Xdefaults new file mode 100644 index 0000000..7995717 --- /dev/null +++ b/Xdefaults @@ -0,0 +1,10 @@ +Xft.dpi: 96 + +URxvt*foreground: #ffffff +URxvt*background: #000000 + +URxvt*font: xft:Monospace:size=10 +URxvt*searchable-scrollback: CM-s +URxvt*geometry: 80x24 +URxvt*scrollBar: false +URxvt*saveLines: 50000 diff --git a/gitconfig b/gitconfig new file mode 100644 index 0000000..ae1b2df --- /dev/null +++ b/gitconfig @@ -0,0 +1,7 @@ +[user] + name = David Vazgenovich Shakaryan + email = dvshakaryan@gmail.com +[core] + editor = vim +[push] + default = simple diff --git a/screenrc b/screenrc new file mode 100644 index 0000000..0dcfa60 --- /dev/null +++ b/screenrc @@ -0,0 +1,7 @@ +defutf8 on +defscrollback 10000 + +startup_message off + +hardstatus alwayslastline +hardstatus string '%{= bc}%-w%50>%{= bw}%{+b}%n%{-} %t%{-}%+w%<' @@ -0,0 +1,25 @@ +let g:inkpot_black_background = 1 + +colorscheme inkpot +filetype on +syntax on + +filetype plugin on + +set wrap +set nocompatible +set nobackup +set backspace=indent,eol,start +set history=1000 +set ruler +set showcmd +set ttyfast + +set autoindent +set smartindent +set shiftwidth=4 +set tabstop=4 + +set ignorecase +set incsearch +set nohlsearch |