This repository has been archived on 2021-12-21. You can view files and clone it, but cannot push or open issues/pull-requests.
neovim-config/init.vim

18 lines
668 B
VimL
Raw Normal View History

" The leader key is the main modifier used for keybindings.
" You can use it inside keybindings by using <leader>
" I use space as my leader key
2020-08-09 07:49:51 +02:00
let g:mapleader = ' '
" Local leader is the same principle as leader, but it's used
" for keybindings that are local to the current buffer, to
" avoid confusion
" I use tab as my local leader
2020-08-09 07:49:51 +02:00
let g:maplocalleader = "\<tab>"
2020-08-08 20:27:01 +02:00
" This sources all the files inside the init directory
" The directory must be in your runtimepath; my init directory
" is inside my ~/.config/nvim directory, this one is always in
" runtimepath
" Without the !, runtime only sources the first file in the list,
" instead of all
2020-08-08 20:27:01 +02:00
runtime! init/*.vim