Using stow-rename, unhide all the files :3
This commit is contained in:
parent
08ea297910
commit
6826c738e2
7 changed files with 4 additions and 0 deletions
1
config/vim/ftplugin/crontab.vim
Normal file
1
config/vim/ftplugin/crontab.vim
Normal file
|
@ -0,0 +1 @@
|
|||
set backupcopy=yes
|
2
config/vim/ftplugin/html.vim
Normal file
2
config/vim/ftplugin/html.vim
Normal file
|
@ -0,0 +1,2 @@
|
|||
let b:html_mode = 1
|
||||
runtime! ftplugin/xml.vim
|
44
config/vim/vimrc
Normal file
44
config/vim/vimrc
Normal file
|
@ -0,0 +1,44 @@
|
|||
if !filereadable($XDG_CACHE_HOME . '/vim/autoload/plug.vim')
|
||||
silent !curl -fLo $XDG_CACHE_HOME/vim/autoload/plug.vim --create-dirs 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
||||
autocmd VimEnter * PlugInstall
|
||||
endif
|
||||
|
||||
call plug#begin($XDG_CACHE_HOME . '/vim/bundle')
|
||||
Plug 'tpope/vim-sensible'
|
||||
|
||||
Plug 'ciaranm/inkpot'
|
||||
Plug 'ervandew/supertab'
|
||||
Plug 'tpope/vim-repeat'
|
||||
Plug 'tpope/vim-sleuth'
|
||||
Plug 'tpope/vim-surround'
|
||||
Plug 'tpope/vim-unimpaired'
|
||||
Plug 'w0rp/ale'
|
||||
Plug 'wincent/terminus'
|
||||
|
||||
Plug 'sheerun/vim-polyglot'
|
||||
Plug 'sukima/xmledit'
|
||||
|
||||
if has('macunix')
|
||||
Plug 'itspriddle/vim-marked'
|
||||
endif
|
||||
|
||||
call plug#end()
|
||||
|
||||
colorscheme inkpot
|
||||
inoremap jj <Esc>
|
||||
|
||||
set hlsearch
|
||||
set linebreak showbreak=↩
|
||||
set showcmd
|
||||
|
||||
if exists('+relativenumber')
|
||||
set relativenumber
|
||||
else
|
||||
set number
|
||||
endif
|
||||
|
||||
set tabstop=2 shiftwidth=2
|
||||
|
||||
if exists('+breakindent')
|
||||
set breakindent breakindentopt=sbr
|
||||
endif
|
Loading…
Add table
Add a link
Reference in a new issue