dotfiles/dot-config/nvim/init.vim

47 lines
811 B
VimL
Raw Normal View History

2019-04-08 01:58:23 +00:00
call plug#begin('~/.local/share/nvim/plugged')
Plug 'airblade/vim-gitgutter'
Plug 'ajh17/vimcompletesme'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'dracula/vim'
Plug 'easymotion/vim-easymotion'
Plug 'godlygeek/tabular'
Plug 'RobertAudi/fish.vim'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-surround'
Plug 'vim-airline/vim-airline'
Plug 'w0rp/ale'
Plug 'Yggdroot/indentLine'
call plug#end()
se number
se ruler
se nowrap
se textwidth=0 wrapmargin=0 tw=0
se lbr
se mouse=a
se autoindent
se smartindent
se expandtab
se shiftwidth=4
se formatoptions+=j
se cursorline
se clipboard=unnamedplus
se autoread
2018-11-15 01:01:37 +00:00
syntax enable
filetype plugin indent on
map <F7> mzgg=G`z
2019-06-01 20:53:49 +00:00
map r "_d
2018-11-15 01:01:37 +00:00
se background=dark
2018-11-15 01:01:37 +00:00
colorscheme dracula
se termguicolors
2018-11-15 01:01:37 +00:00
autocmd FileType * se tw=0
2018-11-15 01:01:37 +00:00
se ignorecase
se smartcase
2019-04-14 01:12:50 +00:00
command Q q!