diff --git a/wiki/programming-languages/c-language.md b/wiki/programming-languages/c-language.md index 106bee5..0735ee0 100644 --- a/wiki/programming-languages/c-language.md +++ b/wiki/programming-languages/c-language.md @@ -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). diff --git a/wiki/programming-languages/golang.md b/wiki/programming-languages/golang.md index 7e92504..84dcd5a 100644 --- a/wiki/programming-languages/golang.md +++ b/wiki/programming-languages/golang.md @@ -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). diff --git a/wiki/programming-languages/nim.md b/wiki/programming-languages/nim.md index d19c125..bc9a83d 100644 --- a/wiki/programming-languages/nim.md +++ b/wiki/programming-languages/nim.md @@ -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). diff --git a/wiki/programming-languages/python.md b/wiki/programming-languages/python.md index 3068be9..8c497af 100644 --- a/wiki/programming-languages/python.md +++ b/wiki/programming-languages/python.md @@ -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 diff --git a/wiki/programming-languages/vhdl.md b/wiki/programming-languages/vhdl.md index a389889..be915e6 100644 --- a/wiki/programming-languages/vhdl.md +++ b/wiki/programming-languages/vhdl.md @@ -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