1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-01 14:37:46 +02:00

programming languages: cleaned up

This commit is contained in:
tiyn 2025-03-26 05:25:26 +01:00
parent afdcc39018
commit 95bb67a9e7
5 changed files with 0 additions and 31 deletions

View File

@ -8,7 +8,3 @@ To get c working you basically just need to install a compiler.
To get a compiler for c there are a few options.
- [GNU compiler collection](https://gcc.gnu.org)
### Vim
The steps to make Vim a c IDE are described in [the vim section of this wiki](../linux/vim/c-language.md).

View File

@ -15,7 +15,3 @@ export PATH="${GOBIN}:${PATH}"
```
You can move the `GOPATH` where you want.
## Vim
The steps to make Vim a Go IDE are described in [the vim section of this wiki](../linux/vim/golang.md).

View File

@ -8,8 +8,3 @@ language.
You can install nim using choosenim with
`curl https://nim-lang.org/choosenim/init.sh -sSf | sh`.
If you're on an arch-based machine you can also run `yay -S choosenim` (install `yay` if necessary).
## Vim
The steps to make Vim a nim IDE are described in
[the vim section of this wiki](../linux/vim/nim.md).

View File

@ -66,20 +66,6 @@ Afterwards you can check if the Pyhton version is installed using the following
python3.9 --version
```
### Vim
The steps to make Vim a python IDE are described in
[the vim section of this wiki](../linux/vim/python.md).
Additionally make sure to add
```vimscript
let g:python_host_prog = "/usr/bin/python2"
let g:python3_host_prog = "/usr/bin/python3"
```
to your `init.vim` to avoid usage of `pyenv`s version of python in autocompletion.
## Usage
### Create a requirements file

View File

@ -7,10 +7,6 @@ VHDL is a hardware description language.
To simulate a VHDL project get [GHDL](https://github.com/ghdl/ghdl).
After simulating you can view the simulation with [GTKWave](https://github.com/gtkwave/gtkwave).
### Vim
The steps to make Vim VHDL-ready are described in [the vim section of this wiki](../linux/vim/vhdl.md).
## Usage
### Makefile for basic project