Created
August 22, 2017 08:38
-
-
Save index0h/2c808e28f57a5c05e26582abd8db4d60 to your computer and use it in GitHub Desktop.
Revisions
-
index0h revised this gist
Aug 22, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,5 +9,5 @@ RUN yum install -y --nogpgcheck \ && yum install -y --nogpgcheck --enablerepo='epel' \ vim \ htop \ mc \ && yum clean all -
index0h created this gist
Aug 22, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ if has("syntax") syntax on endif if has('mouse') set mouse=r endif set showcmd " Show (partial) command in status line. set showmatch " Show matching brackets. set ignorecase " Do case insensitive matching set number " Show line numbers set paste set tabstop=4 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ FROM centos:centos6.6 ENV TERM=xterm COPY .vimrc /root/.vimrc RUN yum install -y --nogpgcheck \ epel-release \ && yum install -y --nogpgcheck --enablerepo='epel' \ vim \ htop \ mc && yum clean all