Devicons
This commit is contained in:
parent
44116fd030
commit
b8761d26e4
3 changed files with 14 additions and 2 deletions
|
@ -956,7 +956,7 @@
|
|||
<key>Non-ASCII Anti Aliased</key>
|
||||
<true/>
|
||||
<key>Normal Font</key>
|
||||
<string>FiraCode-Regular 18</string>
|
||||
<string>FuraCodeNerdFontC-Regular 18</string>
|
||||
<key>Option Key Sends</key>
|
||||
<integer>0</integer>
|
||||
<key>Prompt Before Closing 2</key>
|
||||
|
|
2
init.sh
2
init.sh
|
@ -6,7 +6,7 @@ brew cask install iterm2
|
|||
|
||||
echo "-= Installing Fonts =-"
|
||||
brew tap caskroom/fonts
|
||||
brew cask install font-fira-code
|
||||
brew cask install font-firacode-nerd-font
|
||||
|
||||
echo "-= Assigning Zsh as Default Shell =-"
|
||||
chsh -s $(which zsh)
|
||||
|
|
12
vimrc
12
vimrc
|
@ -68,6 +68,7 @@ Plug 'vim-airline/vim-airline'
|
|||
Plug 'vim-airline/vim-airline-themes'
|
||||
Plug 'Yggdroot/indentLine'
|
||||
Plug 'airblade/vim-gitgutter'
|
||||
Plug 'ryanoasis/vim-devicons'
|
||||
|
||||
" Navigating Project Files
|
||||
Plug 'ctrlpvim/ctrlp.vim', { 'on': 'CtrlP' }
|
||||
|
@ -95,6 +96,15 @@ Plug 'justinmk/vim-sneak'
|
|||
" Tmux
|
||||
Plug 'christoomey/vim-tmux-navigator'
|
||||
|
||||
" Visuals
|
||||
Plug 'mhinz/vim-startify'
|
||||
Plug 'dracula/vim'
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
Plug 'Yggdroot/indentLine'
|
||||
Plug 'airblade/vim-gitgutter'
|
||||
Plug 'ryanoasis/vim-devicons'
|
||||
|
||||
call plug#end()
|
||||
|
||||
|
||||
|
@ -181,6 +191,8 @@ let s:menus.neovim.command_candidates += [['Previous buffer: <Shift><Tab>', 'bpr
|
|||
" ctrlp Fuzzy Finder
|
||||
nnoremap <Leader>p :CtrlP<CR>
|
||||
nnoremap <Leader>t :CtrlP<CR>
|
||||
let g:ctrlp_match_window = 'top,order:ttb,min:1,max:10,results:10'
|
||||
let g:ctrlp_line_prefix = ''
|
||||
let g:ctrlp_user_command = 'ag %s -l --nocolor -g ""'
|
||||
let s:menus.neovim.command_candidates += [['Fuzzy Find Files: <Leader>t (or p)', 'CtrlP']]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue