-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.vim
More file actions
40 lines (26 loc) · 721 Bytes
/
init.vim
File metadata and controls
40 lines (26 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
set number
set mouse=a
set termguicolors
set tabstop=4
set shiftwidth=4
set expandtab
set smartindent
set relativenumber
set clipboard=unnamedplus
set incsearch
set hlsearch
set wrap
call plug#begin('~/.config/nvim/plugged')
Plug 'tpope/vim-sensible' " Basic sensible defaults
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } " Fuzzy finder
Plug 'junegunn/fzf.vim' " Fzf integration
Plug 'preservim/nerdtree' " File explorer
Plug 'neoclide/coc.nvim', {'branch': 'release'} " Intellisense engine
Plug 'github/copilot.vim'
Plug 'morhetz/gruvbox'
call plug#end()
set background=dark
nnoremap <C-s> :w<CR>
inoremap <C-s> <Esc>:w<CR>a
colorscheme gruvbox
nnoremap <C-f> :FZF<CR>