Include my .vimrc

This commit is contained in:
Kristóf Tóth 2018-05-24 20:21:07 +02:00
parent 629e7769ca
commit 9031a06898
3 changed files with 12 additions and 0 deletions

1
.dockerignore Normal file
View File

@ -0,0 +1 @@
.git

View File

@ -1,5 +1,7 @@
FROM debian:unstable
COPY . /
RUN export DEBIAN_FRONTEND=noninteractive &&\
apt-get update &&\
apt-get install -y \

9
root/.vimrc Normal file
View File

@ -0,0 +1,9 @@
set nocompatible
filetype on
set ignorecase
set smartcase
set incsearch
syntax on
set tabstop=4
set shiftwidth=4
set expandtab