Skip to content

Commit

Permalink
A couple of small improvments:
Browse files Browse the repository at this point in the history
* Add nerd font installation to pre-requisites
* Change file find shortcut to avoid conflict with page-down
  • Loading branch information
marcuswu committed Nov 3, 2020
1 parent dc798c7 commit 1e89d63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export PATH=$GOPATH/bin:/usr/local/go/bin:$PATH
3. Install python support for neovim: `pip3 install pynvim`
4. Install neovim: https://github.com/neovim/neovim/wiki/Installing-Neovim
5. Install vim-plug: https://github.com/junegunn/vim-plug#installation
6. Install nerd-fonts: https://github.com/ryanoasis/nerd-fonts#font-installation

## Installation

Expand All @@ -45,7 +46,7 @@ cd ~/Downloads/; curl -o init.vim https://raw.githubusercontent.com/plentiform/g

![](gifs/nerdtree.gif)

- File search: <kbd>Ctrl</kbd>-`f`
- File search: <kbd>Ctrl</kbd>-`o`

![](gifs/fzf.gif)

Expand Down
2 changes: 1 addition & 1 deletion init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ let g:UltiSnipsJumpBackwardTrigger="<c-k>"
"FILE SEARCH:
"------------
"allows FZF to open by pressing CTRL-F
map <C-f> :FZF<CR>
map <C-o> :FZF<CR>
"allow FZF to search hidden 'dot' files
let $FZF_DEFAULT_COMMAND = "find -L"

Expand Down

0 comments on commit 1e89d63

Please sign in to comment.