readme.org

June 30, 2023 · View on GitHub

  • Ninrod's emacs, vim, zsh and tmux dotfiles

[[https://www.gnu.org/licenses/gpl-3.0.en.html][https://img.shields.io/badge/license-GPLv3-blue.svg]]

  • Minimalism, speed and power while working inside the shell.

#+BEGIN_QUOTE "You are your dotfiles." -- Friedrich Wilhelm Nietzsche #+END_QUOTE

#+BEGIN_QUOTE "Show me your dotfiles and I'll tell you what kind of programmer you are." -- Karl Marx #+END_QUOTE

  • Screenshots ** Ubuntu: emacs and vim

[[https://raw.githubusercontent.com/ninrod/dotshots/master/ubuntu.png][https://raw.githubusercontent.com/ninrod/dotshots/master/ubuntu.png]]

** terminal

[[https://raw.githubusercontent.com/ninrod/dotshots/master/2017-02-vim-tmux-zsh.png][https://raw.githubusercontent.com/ninrod/dotshots/master/2017-02-vim-tmux-zsh.png]]

  • Note

These are my personal configuration files, which are in a constant state of change as I develop my environment across several systems so I can't guarantee that these configurations will work for you, at all. Still, it can be useful and instructional to look around and take bits and snippets to use within your own configuration files. Feel free to open issues though, if the config did not work for you. I'll try to help if I can.

  • Install Instructions
  • Shell time now lets write some shell commands.
  • note: the install.zsh script basically does this:

    1. mounts symlinks on your home folder;
    2. creates ~/.options/shell-options.zsh file, if not existent
    3. sources the ~/.options/shell-options.zsh file
    4. overwrites your .gitconfig (so back it up if you have something important)
    5. tries to configure your git information, if applicable.
    6. fetches vim and zsh dependencies
  • now open you shell and don't forget to set up your git information (=vim ~/.options/shell-options.zsh=) #+BEGIN_SRC shell git clone https://github.com/ninrod/dotfiles && cd dotfiles && make vim ~/.options/shell-options.zsh $ exec zsh #+END_SRC

  • That's it, your're all set.

  • =protip=: =make update= will update all dependencies.

  • On installing new plugins

You may notice that I do not use any plugin manager, just a tiny little function I wrote called =ningrab=. For now, if you want to include a new plugin, search for the =*-deps.zsh= files in the =boot= directory. The files should be self descriptive. Just add a newline like this in, for example, =vim-deps.zsh= file:

#+BEGIN_SRC sh ningrab githubuser/awesomeplugin #+END_SRC

and then run =make= in the =~/.dotfiles= directory. The plugin will be fetched from github and placed in the correct location for you.