2019-04-08 01:58:23 +00:00
|
|
|
call plug#begin('~/.local/share/nvim/plugged')
|
2022-01-25 16:01:04 +00:00
|
|
|
Plug 'ackyshake/vimcompletesme'
|
2019-04-08 01:58:23 +00:00
|
|
|
Plug 'airblade/vim-gitgutter'
|
|
|
|
Plug 'ctrlpvim/ctrlp.vim'
|
2022-01-11 18:12:14 +00:00
|
|
|
Plug 'dense-analysis/ale'
|
2019-04-08 01:58:23 +00:00
|
|
|
Plug 'dracula/vim'
|
|
|
|
Plug 'easymotion/vim-easymotion'
|
|
|
|
Plug 'godlygeek/tabular'
|
2022-01-25 16:01:04 +00:00
|
|
|
Plug 'lervag/vimtex'
|
|
|
|
Plug 'lukas-reineke/indent-blankline.nvim'
|
2019-04-08 01:58:23 +00:00
|
|
|
Plug 'RobertAudi/fish.vim'
|
|
|
|
Plug 'tpope/vim-commentary'
|
|
|
|
Plug 'tpope/vim-sensible'
|
|
|
|
Plug 'tpope/vim-surround'
|
|
|
|
Plug 'vim-airline/vim-airline'
|
|
|
|
call plug#end()
|
|
|
|
|
2022-01-11 18:12:14 +00:00
|
|
|
se background=dark
|
|
|
|
se clipboard=unnamedplus
|
|
|
|
se colorcolumn=85
|
|
|
|
se cursorline
|
|
|
|
se expandtab
|
|
|
|
se formatoptions+=j
|
|
|
|
se ignorecase
|
2022-01-21 18:30:10 +00:00
|
|
|
se linebreak
|
2019-01-13 01:35:22 +00:00
|
|
|
se mouse=a
|
2022-01-11 18:12:14 +00:00
|
|
|
se nowrap
|
|
|
|
se number
|
2019-01-13 01:35:22 +00:00
|
|
|
se shiftwidth=4
|
2022-01-11 18:12:14 +00:00
|
|
|
se smartcase
|
|
|
|
se smartindent
|
2021-01-24 05:49:08 +00:00
|
|
|
se termguicolors
|
2022-01-11 18:12:14 +00:00
|
|
|
se textwidth=0
|
|
|
|
se wrapmargin=0
|
2018-11-15 01:01:37 +00:00
|
|
|
|
2019-01-13 01:35:22 +00:00
|
|
|
autocmd FileType * se tw=0
|
2022-01-11 18:12:14 +00:00
|
|
|
colorscheme dracula
|
2019-04-14 01:12:50 +00:00
|
|
|
command Q q!
|
2022-01-11 18:12:14 +00:00
|
|
|
filetype plugin indent on
|
|
|
|
syntax enable
|
|
|
|
map <F7> mzgg=G`z
|
|
|
|
map r "_d
|