]> git.zndr.dk Git - dotfiles.git/commitdiff
Rename dotfiles to cfg
authorJannik ZANDER <jzander@grundfos.com>
Thu, 14 Dec 2017 14:48:23 +0000 (15:48 +0100)
committerJannik ZANDER <jzander@grundfos.com>
Thu, 14 Dec 2017 15:01:55 +0000 (16:01 +0100)
.bashrc
.config/bash/aliases
.config/git/config_local
.vimrc
README.md

diff --git a/.bashrc b/.bashrc
index a9eba3573211112c921cfe6e6c1fc6daf4d35cd2..4f1694ed49ab46caff9cef6fd975a126cddbb857 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -13,6 +13,6 @@ done;
 
 # last line
 [ -f ~/.bashrc_local ] && . ~/.bashrc_local
-#LS_COLORS="ow=01;36;40" && export LS_COLORS
+LS_COLORS="ow=01;36;40" && export LS_COLORS
 
 [ -f ~/.fzf.bash ] && source ~/.fzf.bash
index 8b37a4b4dfd0d1aa2e33acf358cda3fd32bcea14..02c490abd905aefe9808c20590ae4f446c0db75f 100644 (file)
@@ -23,7 +23,7 @@ alias fgrep='fgrep --color=auto'
 if [ -e /usr/bin/vimx ]; then alias vim='/usr/bin/vimx'; fi
 
 # Shortcuts
-alias dotfiles='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
+alias cfg='git --git-dir=$HOME/.cfg --work-tree=$HOME'
 alias g='git'
 alias h='history'
 alias j='jobs'
index 20cf0c975500c3df0c1125dbf7fe426fb1618d82..cc524e0089412f71723550bd20f1025b453b206c 100644 (file)
@@ -2,4 +2,4 @@
        name = Jannik ZANDER
        email = jzander@grundfos.com
 [core]
-       autocrlf = true
+       autocrlf = input
diff --git a/.vimrc b/.vimrc
index eb83ef377270a5d7e5a1c62f4c95f371b16b7b0e..f02cd874246606376722bef3416f4f5537e848ec 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -39,7 +39,7 @@ Plug 'brandonbloom/csearch.vim'
 Plug 'mileszs/ack.vim'
 Plug 'jeetsukumaran/vim-filesearch'
 Plug 'haya14busa/incsearch.vim'
-"Plug 'altercation/vim-colors-solarized'
+Plug 'altercation/vim-colors-solarized'
 Plug 'editorconfig/editorconfig-vim'
 Plug 'johnsyweb/vim-makeshift'
 Plug 'tfnico/vim-gradle'
@@ -76,6 +76,9 @@ set fileformats=unix,dos,mac
 "set foldclose=all
 "set foldopen+=jump
 set guioptions+=a
+set guioptions-=m "menu bar
+set guioptions-=T "toolbar
+set guioptions-=r "scroolbar
 set history=200
 set incsearch       " incremental search
 set laststatus=2    " always show status line
index 432f8a6b04c7d98d33f41be6944e73fdb0438fed..471f7c376c28cf3750869190e24d21c9b1b272c9 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,12 +1,12 @@
 # dotfiles
 
 What you need to do on the new box is this:
-    
+
     $ cd $HOME
-    $ git init --bare $HOME/.dotfiles
-    $ alias dot='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
-    $ dot config --local status.showUntrackedFiles no
-    $ dot remote add origin git@bitbucket.org:jannikz/dotfiles.git
-    $ dot fetch
-    $ dot reset --hard origin/master
-    $ dot branch -u origin/master
\ No newline at end of file
+    $ git init --bare $HOME/.cfg
+    $ alias cfg='git --git-dir=$HOME/.cfg --work-tree=$HOME'
+    $ cfg config --local status.showUntrackedFiles no
+    $ cfg remote add origin git@bitbucket.org:jannikz/dotfiles.git
+    $ cfg fetch
+    $ cfg reset --hard origin/master
+    $ cfg branch -u origin/master