-
-
Save ackuser/c9e7aeb4088cb2a3d27d43b5c9b56b84 to your computer and use it in GitHub Desktop.
My nvim config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set scrolloff=8 | |
set number | |
" set relativenumber | |
set tabstop=4 softtabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set smartindent | |
set showcmd | |
set notermguicolors | |
call plug#begin('~/.vim/plugged') | |
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } | |
Plug 'junegunn/fzf.vim' | |
Plug 'ellisonleao/gruvbox.nvim' | |
Plug 'tomlion/vim-solidity' | |
call plug#end() | |
set termguicolors | |
set background=dark " or light if you want light mode | |
colorscheme gruvbox | |
" Our remaps | |
let mapleader = " " | |
nnoremap <leader>pv :Vex<CR> | |
nnoremap <Leader><CR> :so ~/.config/nvim/init.vim<CR> | |
nnoremap <C-P> :GFiles<CR> | |
nnoremap <leader>pf :Files<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment