Skip to content

Instantly share code, notes, and snippets.

@index0h
Created August 22, 2017 08:38
Show Gist options
  • Select an option

  • Save index0h/2c808e28f57a5c05e26582abd8db4d60 to your computer and use it in GitHub Desktop.

Select an option

Save index0h/2c808e28f57a5c05e26582abd8db4d60 to your computer and use it in GitHub Desktop.

Revisions

  1. index0h revised this gist Aug 22, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Dockerfile
    Original 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
    mc \
    && yum clean all
  2. index0h created this gist Aug 22, 2017.
    14 changes: 14 additions & 0 deletions .vimrc
    Original 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
    13 changes: 13 additions & 0 deletions Dockerfile
    Original 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