From 90b9522b15a692532d9b3f28acc417670144e3fa Mon Sep 17 00:00:00 2001 From: eug-vs <eugene@eug-vs.xyz> Date: Tue, 21 Sep 2021 10:56:14 +0300 Subject: feat(rpi): separate display and master sessions --- raspberry/.config/nvim/init.vim | 54 ----------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 raspberry/.config/nvim/init.vim (limited to 'raspberry/.config/nvim') diff --git a/raspberry/.config/nvim/init.vim b/raspberry/.config/nvim/init.vim deleted file mode 100644 index 98bd4ef..0000000 --- a/raspberry/.config/nvim/init.vim +++ /dev/null @@ -1,54 +0,0 @@ -" 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 <c-h> <C-w>h -nnoremap <c-j> <C-w>j -nnoremap <c-k> <C-w>k -nnoremap <c-l> <C-w>l - -" Easier indentation -vnoremap < <gv -vnoremap > >gv - -" Remove trailing whitespace on save -autocmd BufWritePre * %s/\s\+$//e - -" Vimrc management -nnoremap <leader>ev :vs $MYVIMRC<CR> -nnoremap <leader>sv :source $MYVIMRC<CR> - -" Colorscheme -colorscheme murphy -- cgit v1.2.3