Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dxcx/workenv
My working enviorment + Configurations
https://github.com/dxcx/workenv
Last synced: about 1 month ago
JSON representation
My working enviorment + Configurations
- Host: GitHub
- URL: https://github.com/dxcx/workenv
- Owner: DxCx
- Created: 2012-09-17T06:45:32.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-07-13T13:18:16.000Z (over 1 year ago)
- Last Synced: 2024-04-14T05:26:22.859Z (9 months ago)
- Language: Shell
- Homepage:
- Size: 375 KB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
WorkEnv
=======
my work enviorment configurations and pluginsWindows (Vim Only):
----------
using TortoiseGit just Clone the repo
then don't forget to do:
```shell
Right Click > TortoiseGit > Submodule Update
```After the repository is created don't forget to
source the vimrc inside the original .vimrc:
```shell
source X:\dxcx_workenv\vim\vimrc.vim
```Python:
```shell
http://downloads.activestate.com/ActivePython/releases/2.7.2.5/ActivePython-2.7.2.5-win32-x86.msi
http://www.lfd.uci.edu/~gohlke/pythonlibs/2jdj6mdn/pip-1.4.1.win32-py2.7.exe
```Finally:
```shell
pip install ipython pyreadline
```Linux :
----------
Easy Install script attached, To skip the installation prompts (Assumes all yes) use NOCONFIRM=1 before the bash command.
#### via curl```shell
bash -c "$(curl -fsSL https://raw.githubusercontent.com/DxCx/WorkEnv/master/bin/install.sh)"
```#### via wget
```shell
bash -c "$(wget https://raw.githubusercontent.com/DxCx/WorkEnv/master/bin/install.sh -O -)"
```Powerline fonts (System Wide):
-----------------
```shell
cd ~
git clone https://github.com/Lokaltog/powerline-fonts
cd powerline-fonts
find -type d -not -iwholename '*.git*' -exec sudo mv {} /usr/share/fonts/ \;
cd ..
rm -Rf powerline-fonts
sudo fc-cache -vf
```To update all plugins:
----------------
```shell
git submodule foreach 'git remote update origin; git fetch origin; git checkout $(git rev-parse --abbrev-ref HEAD); git reset --hard origin/$(git rev-parse --abbrev-ref HEAD); git submodule update --recursive; git clean -dfx'
```