https://github.com/humorless/dotfiles
My dotfiles/ vim plugin setup scripts/ Clojure dev environment vagrant file
https://github.com/humorless/dotfiles
clojure-development dotfiles vagrantfile vim
Last synced: 8 months ago
JSON representation
My dotfiles/ vim plugin setup scripts/ Clojure dev environment vagrant file
- Host: GitHub
- URL: https://github.com/humorless/dotfiles
- Owner: humorless
- Created: 2019-03-30T04:06:44.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-02-12T10:04:46.000Z (8 months ago)
- Last Synced: 2025-02-12T11:24:03.775Z (8 months ago)
- Topics: clojure-development, dotfiles, vagrantfile, vim
- Language: Shell
- Homepage:
- Size: 77.1 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
The scripts that can do the quick installation of neovim and related dotfiles under the Mac## Java & Clojure Dev
### sdkman
```
curl -s "https://get.sdkman.io" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"
```
### java
```
sdk list java
sdk install java ;; lastest stable version of jdk
```
### brew
```
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
```
### python
```
brew install pyenv
pyenv init
```### clojure CLI tools
```
brew install clojure/tools/clojure
```
### babashka
```
brew install borkdude/brew/babashka
```
### neil
```
brew install babashka/brew/neil
```
### clj-kondo
```
brew install borkdude/brew/clj-kondo
```
### neovim
```
brew install neovim
```
## Productivity Tool### autojump
```
brew install autojump
```
### ack-grep
```
brew install ack
```
### tmux
```
brew install tmux
```
## Node Dev & cljfmt
### nvm
```
brew install nvm
```
### npm
```
nvm install
```
ex:
```
nvm install 12.0.0
```### cljfmt
```
npm install -g node-cljfmt
```## Others
```
# feeling
git bash-complete
CLICOLOR, LSCOLORS, PS1
```