" Neovim minimal configuration for raspberry pi " TODO: find a way re-use the main config " Enter the current millenium set nocompatible syntax enable filetype plugin on " General stuff set number relativenumber set ignorecase smartcase set splitbelow splitright set termguicolors set cursorline set hidden set nowrap set ruler set mouse=a set clipboard=unnamedplus set scrolloff=3 set conceallevel=0 " Indentation set smarttab expandtab set smartindent autoindent set tabstop=2 set shiftwidth=2 set showtabline=2 " Built-in fuzzy-finder set path=.,** set wildmenu set wildignore+=**/node_modules/**,**/build/**,**/dist/**,**/__pycache__/** set wildmode=longest,list,full " Easier window navigation nnoremap h nnoremap j nnoremap k nnoremap l " Easier indentation vnoremap < >gv " Remove trailing whitespace on save autocmd BufWritePre * %s/\s\+$//e " Vimrc management nnoremap ev :vs $MYVIMRC nnoremap sv :source $MYVIMRC " Colorscheme colorscheme murphy