Skip to content

Commit 6a1e28d

Browse files
Add firenvim
1 parent 5592d11 commit 6a1e28d

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,10 @@ Disable the built-in VSCode PHP Language Features.
107107
Install the `phpstorm` command
108108

109109
$ cp scripts/phpstorm.sh /usr/local/bin/phpstorm
110+
111+
### Chrome
112+
113+
Chrome extensions
114+
115+
- Vimium
116+
- Firenvim

dotfiles/.vimrc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ Plug 'vim-airline/vim-airline'
2121
Plug 'vim-airline/vim-airline-themes'
2222
Plug 'vim-scripts/ReplaceWithRegister'
2323

24+
" Neovim
25+
if has('nvim')
26+
Plug 'glacambre/firenvim', { 'do': { _ -> firenvim#install(0) } }
27+
endif
28+
2429
call plug#end()
2530

2631

@@ -72,6 +77,17 @@ let g:user_emmet_leader_key='<C-H>'
7277
" -- Sneak --
7378
highlight link Sneak None
7479

80+
" -- Firenvim --
81+
if has('nvim')
82+
let g:firenvim_config = {
83+
\ 'localSettings': {
84+
\ '.*': {
85+
\ 'takeover': 'never',
86+
\ }
87+
\ }
88+
\ }
89+
endif
90+
7591

7692
" ------------ General Config ------------
7793
set autoread " Reload files changed outside vim

0 commit comments

Comments
 (0)