Sample neovim config

Sample neovim config


imap jk <Esc>
set autoindent
set expandtab
set shiftwidth=2
set tabstop=2
nnoremap  :Files ~
let g:fzf_action = {
  \ 'ctrl-t': 'tab split',
  \ 'ctrl-i': 'split',
  \ 'ctrl-v': 'vsplit' }

call plug#begin()
        Plug 'junegunn/fzf', { 'do' : { -> fzf#install() } }
        Plug 'junegunn/fzf.vim'
call plug#end()

Config file is located in ~/AppData/Local/nvim in Windows and ~/.config/nvim in Linux. init.vim is the name of the config file.

Comments

Popular posts from this blog

QTreeView and QTableView dynamic changes

C++ strings and string_view