All Projects → Relrin → dotfiles

Relrin / dotfiles

Licence: BSD-3-Clause license
My dotfiles (vim/conky/etc.)

Programming Languages

emacs lisp
2029 projects
Vim Script
2826 projects
shell
77523 projects
python
139335 projects - #7 most used programming language
Makefile
30231 projects
Batchfile
5799 projects

Projects that are alternatives of or similar to dotfiles

eRCaGuy dotfiles
.bashrc file, terminal prompt that shows current git branch, Arduino setup, Eclipse setup, git diff with line numbers, helpful scripts, improved Linux productivity, etc.
Stars: ✭ 84 (+6.33%)
Mutual labels:  config, sublime
prettier-config-solidity
Prettier config optimized to reduce AST churn & conform to solidity spec
Stars: ✭ 28 (-64.56%)
Mutual labels:  config
Webpack5-Max
Webpack 5 Boilerplate for JS/React/TS apps.
Stars: ✭ 103 (+30.38%)
Mutual labels:  config
hb-config
hb-config: easy to configure your python project especially Deep Learning experiments
Stars: ✭ 21 (-73.42%)
Mutual labels:  config
DazzleConf
Incredible configuration library
Stars: ✭ 34 (-56.96%)
Mutual labels:  config
dotfiles
My personal configuration and bootstrap files
Stars: ✭ 14 (-82.28%)
Mutual labels:  config
sublime-zig-language
Zig language support for Sublime Text
Stars: ✭ 62 (-21.52%)
Mutual labels:  sublime
nvim-config
My neovim config
Stars: ✭ 63 (-20.25%)
Mutual labels:  config
sconfig
Scala configuration library supporting HOCON for Scala, Java, Scala.js, and Scala Native
Stars: ✭ 99 (+25.32%)
Mutual labels:  config
profig
A straightforward configuration library for Python.
Stars: ✭ 26 (-67.09%)
Mutual labels:  config
dotfiles
The config that makes me a productivity whiz 🧙‍♂️
Stars: ✭ 36 (-54.43%)
Mutual labels:  config
rimerc
rimerc: rimer's dictionary & config
Stars: ✭ 228 (+188.61%)
Mutual labels:  config
ConfigAPI
GSON-like ORM for Bukkit YAML API's
Stars: ✭ 23 (-70.89%)
Mutual labels:  config
juno-agent
juno-agent
Stars: ✭ 46 (-41.77%)
Mutual labels:  config
v13-Discord-Bot
This is my V13 Discord Bot, it has around 95 commands, 17 events, and stores all kinds of data in an SQL database for ease of access. Not to mention a unique style and friendly help menu interface. Used by over 25 people in popular company based servers, this will bring you a professional look that tops your competition.
Stars: ✭ 38 (-51.9%)
Mutual labels:  config
dotfiles
/home/yous
Stars: ✭ 43 (-45.57%)
Mutual labels:  config
nim config
Global project-agnostic config.nims
Stars: ✭ 54 (-31.65%)
Mutual labels:  config
node-config
nodejs的配置中心
Stars: ✭ 53 (-32.91%)
Mutual labels:  config
GoDebug
Go debugger (Delve) integration with Sublime Text 3
Stars: ✭ 20 (-74.68%)
Mutual labels:  sublime
dotfiles
My personal monorepo: dotfiles, /etc-files, single-file scripts, vim plugins, webexts/userscripts, xmonad config, all that stuff…
Stars: ✭ 84 (+6.33%)
Mutual labels:  config

Dotfiles for VIM/Conky/etc.

F.A.Q.

Q: What can I find here?
A: You can find here my settings for VIM/conky/etc. programms

Q: Can I use this for my own purposes?
A: Of course, you can use it easily

Q: Why do you use separate configs for VIM and NeoVIM instead of using a single file?
A: There are two main reasons:

  • I wrote an article that explains how to setup Vim for Python development. In addition to it a certain group of developers would like to get an identical setup described in the article. So I kinda restricted in experimenting and changing the original .vimrc file
  • With NeoVIM I can freely experimenting in the way that I would like. Also NeoVIM has a lot improvements in comparison to the original VIM, so I can get a better development experience when switching between different programming languages and environments

How to install VIM settings

  1. Installing VIM lastest version (skip this step, if already installed):
sudo add-apt-repository ppa:fcwu-tw/ppa
sudo apt-get update
sudo apt-get install vim
  1. Install powerline-fonts for vim-airline

  2. Install Vundle plugin

git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
  1. Clone my repository somewhere and copy settings:
git clone https://github.com/Relrin/dotfiles.git ~/Downloads/dotfiles/
cp -r ~/Downloads/dotfiles/vim/* ~/.vim/
mv ~/Downloads/dotfiles/vim/.vimrc ~/
  1. Run VIM and enter:
:PluginInstall
  1. Restart VIM and get fun ;)

How to install NeoVIM setting

  1. Install NeoVIM itself. Follow the instruction descibed here

  2. Install powerline-fonts for vim-airline

  3. Install vim-plug for plugin management

curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  1. Clone my repository and copy settings:
git clone https://github.com/Relrin/dotfiles.git ~/Downloads/dotfiles/
cp -r ~/Downloads/dotfiles/nvim/* ~/.config/nvim/
  1. Run NeoVIM and install all plugins from the config:
:PlugInstall
  1. After the installation process, restart NeoVIM and get fun ;)

How to install Sublime Text settings

  1. Copy my settings for Sublime Text 3 into settings folder (but first of all don't forget to make a backup of old preferences):
git clone https://github.com/Relrin/dotfiles.git ~/Downloads/
# for example, Mac OS X using ~/Library/Application Support/Sublime Text 3/Packages/ folder
cd ~/Downloads/
cp -r ~/Downloads/dotfiles/sublime/Packages/* ~/Library/Application Support/Sublime Text 3/Packages/
  1. Get list of packages from requirements.txt and install via PackageControl

  2. Restart Sublime Text 3 and get fun ;)

Screenshots

VIM: alt text Sublime Text 3: alt text

Useful articles about setting up NeoVIM

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].