diff --git a/Deployments/vim.nix b/Deployments/vim.nix index 7edf3ee..388a909 100644 --- a/Deployments/vim.nix +++ b/Deployments/vim.nix @@ -5,7 +5,7 @@ vim_configurable.customize { # Below you can specify what usually goes into `~/.vimrc` vimrcConfig.customRC = '' " Preferred global default settings: - set number " Enable line number by default + set number " Enable line numbers by default set background=dark " Set the default background to dark or light set smartindent " Automatically insert extra level of indentation set tabstop=4 " Default tabstop @@ -13,9 +13,9 @@ vim_configurable.customize { set expandtab " Expand [TABS] to spaces syntax enable " Enable syntax highlighting colorscheme solarized " Set the default colour scheme - set t_Co=256 " use 265 colors in vim + set t_Co=256 " Use 265 colors in vim set spell spelllang=en_au " Defaul spell checking language - hi clear SpellBad " clear any unwanted defaul settings + hi clear SpellBad " Clear any unwanted default settings hi SpellBad cterm=underline " Set the spell checking highlight style hi SpellBad ctermbg=NONE " Set the spell checking highlight background match ErrorMsg '\s\+$' " @@ -191,7 +191,7 @@ vim_configurable.customize { supertab # Allows you to use for all your insert completion syntastic # Syntax checking hacks tabular # Script for text filtering and alignment - vim-airline-themes # Collection of themes for airlin + vim-airline-themes # Collection of themes for airline vim-nix # Support for writing Nix expressions in vim vimproc # Interactive command execution required by ghc-mod-vim ];