dotfiles
The default configuration for vim & bash I use on my linux machines
File Explorer
- alacritty.yml
- coc-settings.json
- init.vim
- tmuxcopy.sh
- tilde-switch-d.sh
- tilde-switch-l.sh
- pathogen.vim
- coc.nvim
- delimitMate
- fzf.vim
- gruvbox
- incsearch.vim
- md-img-paste.vim
- nerdtree
- nvim-treesitter
- nvim-treesitter-context
- tagalong.vim
- tagbar
- vim-airline
- vim-airline-themes
- vim-commentary
- vim-fugitive
- vim-go
- vim-matchit
- vim-nerdtree-tabs
- vim-over
- vim-polyglot
- vim-repeat
- vim-styled-components
- vim-surround
- vim-todo-lists
- vimspector
- vista.vim
- molokai.vim
- matchit
- coc.vim
- commands.vim
- config.vim
- mappings.vim
- plugins.vim
- .gitmodules
- bash_aliases
- eslintrc.yaml
- gitmux.conf
- install.sh
- LICENSE
- README.md
- tmux.conf
- updateall.sh
- vimrc
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git submodule
View Details ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
apt-get
View Details ▼
apt-get
Debian and Ubuntu package management utility.
Search for packages using `apt-cache`.
It is recommended to use `apt` when used interactively in Ubuntu versions 16.04 and later.
sudo apt-get update
Update the list of available packages and versions (it's recommended to run this before other `apt-get` commands):
sudo apt-get install {{package}}
Install a package, or update it to the latest available version:
sudo apt-get remove {{package}}
Remove a package:
