29 lines
634 B
VimL
29 lines
634 B
VimL
" ! This is HyDE Vim configuration file. Do not edit this file directly.
|
|
" ! Instead, edit the user configuration file at ' ~/.config/vim/vimrc '.
|
|
" ! This file might be overwritten on updates.
|
|
|
|
let mapleader = " "
|
|
|
|
syntax on "parser
|
|
|
|
filetype plugin indent on
|
|
|
|
set number
|
|
set relativenumber
|
|
|
|
" nvim defaults
|
|
set tabstop=4
|
|
set shiftwidth=4
|
|
set expandtab
|
|
|
|
set hlsearch "hilight search, :nohl to remove
|
|
|
|
set t_Co=256 "terminal colors
|
|
|
|
set wildmenu " auto completion, trigger with <C-n>
|
|
|
|
|
|
let s:VIM_DIR = fnamemodify($MYVIMRC, ':h')
|
|
if filereadable(s:VIM_DIR . '/colors/wallbash.vim')
|
|
colorscheme wallbash
|
|
endif |