dotfiles/.config/nvim/init.vim

53 lines
1.1 KiB
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 'fidian/hexmode'
Plug 'godlygeek/tabular'
Plug 'koirand/tokyo-metro.vim'
Plug 'pedrosans/vim-misc'
Plug 'pedrosans/vim-notes'
Plug 'RobertAudi/fish.vim'
Plug 'scrooloose/nerdtree'
Plug 'Shougo/denite.nvim'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-surround'
Plug 'vim-airline/vim-airline'
Plug 'w0rp/ale'
Plug 'wincent/terminus'
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
se background=dark
2018-11-15 01:01:37 +00:00
colorscheme dracula
se termguicolors " Enable GUI colors for the terminal to get truecolor
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