1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-29 05:18:51 +00:00
dotfiles/nvim/init.vim

42 lines
798 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'
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'
Plug 'RobertAudi/fish.vim'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-surround'
Plug 'vim-airline/vim-airline'
Plug 'Yggdroot/indentLine'
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
se lbr
se mouse=a
2022-01-11 18:12:14 +00:00
se nowrap
se number
se shiftwidth=4
2022-01-11 18:12:14 +00:00
se smartcase
se smartindent
se termguicolors
2022-01-11 18:12:14 +00:00
se textwidth=0
se wrapmargin=0
2018-11-15 01:01:37 +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