From 1913d5e2cefca4ab5c21e2e039c5726ebdf5814a Mon Sep 17 00:00:00 2001 From: PandaCoderPL Date: Fri, 15 Oct 2021 22:17:03 +0100 Subject: [PATCH] Add Vim config Signed-off-by: PandaCoderPL --- CHANGELOG.md | 4 ++++ README.md | 1 + VERSION | 2 +- home/.vimrc | 17 +++++++++++++++++ 4 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 home/.vimrc diff --git a/CHANGELOG.md b/CHANGELOG.md index 93ab43f..2504b7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.0] - 2021-10-15 +### Added +- [Vim Config](home/.vimrc) + ## [1.0.0] - 2021-10-12 ### Added - [Changelog](CHANGELOG.md) diff --git a/README.md b/README.md index 6349c37..62f52d7 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Repository with my dotfiles. * [Bash](http://www.gnu.org/software/bash/) - [ bashrc](home/.bashrc) +* [Vim](https://www.vim.org/) - [.vimrc](home/.vimrc) ## Downloading diff --git a/VERSION b/VERSION index 3eefcb9..9084fa2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.0 +1.1.0 diff --git a/home/.vimrc b/home/.vimrc new file mode 100644 index 0000000..a40b633 --- /dev/null +++ b/home/.vimrc @@ -0,0 +1,17 @@ +set autoindent +set autoread +set background=dark +set colorcolumn=80 +set confirm +set cursorcolumn +set cursorline +set cursorlineopt=number +set expandtab +set fsync +set history=0 +set list +set number +set ruler +set shiftwidth=4 +set softtabstop=4 +set tabstop=4