mirror of
https://github.com/cupcakearmy/dotfiles.git
synced 2025-09-05 21:00:42 +00:00
move to subdirectory
This commit is contained in:
13
files/gitconfig
Normal file
13
files/gitconfig
Normal file
@@ -0,0 +1,13 @@
|
||||
[user]
|
||||
name = cupcakearmy
|
||||
email = hi@nicco.io
|
||||
[filter "lfs"]
|
||||
clean = git-lfs clean -- %f
|
||||
smudge = git-lfs smudge -- %f
|
||||
process = git-lfs filter-process
|
||||
required = true
|
||||
[core]
|
||||
excludesfile = $HOME/.gitignore_global
|
||||
autocrlf = input
|
||||
[commit]
|
||||
gpgsign = true
|
1
files/vim/.gitignore
vendored
Normal file
1
files/vim/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
undodir
|
2687
files/vim/autoload/plug.vim
Normal file
2687
files/vim/autoload/plug.vim
Normal file
File diff suppressed because it is too large
Load Diff
28
files/vimrc
Normal file
28
files/vimrc
Normal file
@@ -0,0 +1,28 @@
|
||||
syntax on
|
||||
|
||||
set number relativenumber
|
||||
set noerrorbells
|
||||
set tabstop=2 softtabstop=2
|
||||
set shiftwidth=2
|
||||
set expandtab
|
||||
set smartindent
|
||||
set nu
|
||||
set nowrap
|
||||
set smartcase
|
||||
set noswapfile
|
||||
set nobackup
|
||||
set undodir=~/.vim/undodir
|
||||
set undofile
|
||||
set incsearch
|
||||
|
||||
call plug#begin('~/.vim/plugged')
|
||||
|
||||
Plug 'morhetz/gruvbox'
|
||||
Plug 'scrooloose/nerdtree'
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug 'junegunn/fzf'
|
||||
Plug 'junegunn/fzf.vim'
|
||||
Plug 'editorconfig/editorconfig-vim'
|
||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||
|
||||
call plug#end()
|
Reference in New Issue
Block a user