This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
changeEjectMenuIcon = function (mods) | |
if mods:containExactly({'cmd'}) then | |
ejectMenu:setTitle('⮑') | |
elseif mods:containExactly({}) then | |
ejectMenu:setTitle('⏏') | |
end | |
return(0) | |
end | |
ejectAll = function () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python -m ipykernel install --user --name=myenv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin('~/.config/nvim/plugged') | |
" Plug 'kopischke/vim-stay' " This isn't working properly for some reason | |
" Plug 'vim-syntastic/syntastic' | |
Plug 'arcticicestudio/nord-vim' | |
Plug 'altercation/vim-colors-solarized' | |
Plug 'chrisbra/csv.vim' | |
Plug 'christoomey/vim-tmux-navigator' | |
Plug 'ctrlpvim/ctrlp.vim' | |
Plug 'dag/vim-fish' | |
Plug 'elzr/vim-json' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin('~/.config/nvim/plugged/') | |
Plug 'arcticicestudio/nord-vim' | |
Plug 'chrisbra/csv.vim' | |
Plug 'ctrlpvim/ctrlp.vim' | |
Plug 'dag/vim-fish' | |
Plug 'elzr/vim-json' | |
Plug 'fs111/pydoc.vim' | |
Plug 'itchyny/lightline.vim' | |
Plug 'jalvesaq/Nvim-R' | |
Plug 'jeffkreeftmeijer/vim-numbertoggle' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,3c1 | |
< call plug#begin('~/.config/nvim/plugged') | |
< " Plug 'kopischke/vim-stay' " This isn't working properly for some reason | |
< " Plug 'vim-syntastic/syntastic' | |
--- | |
> call plug#begin('~/.config/nvim/plugged/') | |
5d2 | |
< Plug 'altercation/vim-colors-solarized' | |
7d3 | |
< Plug 'christoomey/vim-tmux-navigator' |