mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-01 12:24:17 +00:00
47 lines
811 B
VimL
Executable file
47 lines
811 B
VimL
Executable file
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
|
|
syntax enable
|
|
filetype plugin indent on
|
|
|
|
map <F7> mzgg=G`z
|
|
map r "_d
|
|
|
|
se background=dark
|
|
colorscheme dracula
|
|
se termguicolors
|
|
|
|
autocmd FileType * se tw=0
|
|
|
|
se ignorecase
|
|
se smartcase
|
|
|
|
command Q q!
|