Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tdickman committed Dec 15, 2019
1 parent c013c05 commit c6bb66d
Showing 1 changed file with 3 additions and 27 deletions.
30 changes: 3 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,39 +15,15 @@ Ubuntu:
sudo -H pip3 install jedi

# Run the following for each project
ctags -R --fields=+l --languages=python --python-kinds=-iv -f ./tags $(python -c "import os, sys; print(' '.join('{}'.format(d) for d in sys.path if os.path.isdir(d)))") # https://www.fusionbox.com/blog/detail/navigating-your-django-project-with-vim-and-ctags/590/

# Git config
git config --global commit.gpgsign true # Sign commits

# Kotlin

This project includes a few plugins to help with kotlin + vim. To use syntastic
with a kotlin project you need to to the following to enable sytastic:

https://github.com/francis36012/ktsyntastic

Add the following to build.gradle:

```
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.fagyapong.ktsyntastic:ktsyntastic:0.3.1"
}
}
apply plugin: "com.fagyapong.ktsyntastic"
ctags -R --fields=+l --languages=python --python-kinds=-iv -f ./tags $(python -c "import os, sys; print(' '.join('{}'.format(d) for d in sys.path if os.path.isdir(d)))") # https://www.fusionbox.com/blog/detail/navigating-your-django-project-with-vim-and-ctags/590/
```

Then run the following to generate a .ale_kotlinc_config file:
# Git config

```
./gradlew kotlinAle
git config --global commit.gpgsign true # Sign commits
```

# Ubuntu general settings
Expand Down

0 comments on commit c6bb66d

Please sign in to comment.