Last active
September 28, 2022 16:35
-
-
Save osvik/640f51a69dfe981c693ceba3873c4017 to your computer and use it in GitHub Desktop.
A very simple vim configuration
This file contains 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 characters
" Vim defaults | |
set nocp | |
" syntax highlighting | |
syntax on | |
" Show line numbers | |
set number | |
" Enable mouse | |
set mouse=a | |
" Tabs and ident | |
filetype indent on | |
set tabstop=4 | |
set shiftwidth=4 | |
set autoindent | |
set smartindent | |
" Plugins | |
filetype plugin on | |
filetype plugin indent on | |
" File stats | |
set ruler | |
" Status bar | |
set laststatus=2 | |
" Encoding | |
set encoding=utf-8 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment