1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00

Merge pull request #1 from danbee/master

Master
This commit is contained in:
Daniel Barber 2021-10-12 09:19:42 -05:00 committed by GitHub
commit 315ce2e468
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 1 deletions

3
config/nvim/init.vim Normal file
View File

@ -0,0 +1,3 @@
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
source ~/.vimrc

View File

@ -5,4 +5,5 @@ if has("gui_running") || has("gui_vimr")
let g:airline_theme = 'onedark' let g:airline_theme = 'onedark'
endif endif
let g:airline_powerline_fonts = 0 let g:airline#extensions#tabline#enabled = 1
let g:airline_powerline_fonts = 1

View File

@ -29,5 +29,11 @@ let g:ale_fixers = {
\ 'remove_trailing_lines', \ 'remove_trailing_lines',
\ 'trim_whitespace', \ 'trim_whitespace',
\ 'prettier' \ 'prettier'
\ ],
\ 'vue': [
\ 'remove_trailing_lines',
\ 'trim_whitespace',
\ 'eslint',
\ 'prettier'
\ ] \ ]
\} \}

View File

@ -2,6 +2,8 @@ if has("gui_running") || has("gui_vimr")
" Set GUI font according to OS " Set GUI font according to OS
if has("gui_macvim") if has("gui_macvim")
set guifont=SauceCodePro\ Nerd\ Font:h13 set guifont=SauceCodePro\ Nerd\ Font:h13
elseif has("gui_vimr")
" vimr has disabled guifont
elseif has("gui_gtk2") elseif has("gui_gtk2")
set guifont=DejaVu\ Sans\ Mono\ 15 set guifont=DejaVu\ Sans\ Mono\ 15
endif endif

View File

@ -1 +1,2 @@
map <C-P> :FZF<CR> map <C-P> :FZF<CR>
map <C-B> :Buffers<CR>