Add Vim config
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
This commit is contained in:
parent
bcffdc59aa
commit
1913d5e2ce
|
@ -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/),
|
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).
|
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
|
## [1.0.0] - 2021-10-12
|
||||||
### Added
|
### Added
|
||||||
- [Changelog](CHANGELOG.md)
|
- [Changelog](CHANGELOG.md)
|
||||||
|
|
|
@ -17,6 +17,7 @@ Repository with my dotfiles.
|
||||||
|
|
||||||
* [Bash](http://www.gnu.org/software/bash/) - [
|
* [Bash](http://www.gnu.org/software/bash/) - [
|
||||||
bashrc](home/.bashrc)
|
bashrc](home/.bashrc)
|
||||||
|
* [Vim](https://www.vim.org/) - [.vimrc](home/.vimrc)
|
||||||
|
|
||||||
## Downloading
|
## Downloading
|
||||||
|
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue