Coder Social home page Coder Social logo

dotfiles's Introduction

Introduction [0/1]

  • [ ] Fix doom link
Cross platform config that uses org mode to keep track of all apps to be installed as well as the configuration for these apps. Setting up on a new computer should be a matter of running a single installation command to:
  • Download all apps and dependencies
  • Tangle code from this file
  • Do any symlinking that is required

N.B. Symlinking may not be required and org tangle may the only thing that is needed!!!

Makefile ala Doom may be used to run the scripts.

This is the beginning of a very long sentence that shall scarcely ever be completed this another bit of the line and when it does it should wrap around to the next line. And then we go on and on, bla bla bla!!!!

Gui apps

These are gui apps and aren’t used in the commandline

Cross platform

Chromium

Dirac

Windows

Rapid environment editor

Autoit

Non Free OS

Audio

Ableton Live

Adobe Audition

Commandline apps

Can be used on the commandline but may also be used in a GUI

Cross platform

Distributions

Thoughtbot

Text editor

Emacs

Distributions
Spacemacs
Doom

Moved here: Doom

Installation

Provide some sort of installation steps. Use org tangle, git, git sub modules.

Make symlinks

This the script from original dotfiles:

#!/bin/bash
############################
# .make.sh
# This script creates symlinks from the home directory to any desired dotfiles in ~/dotfiles
############################

########## Variables

dir=~/dotfiles                    # dotfiles directory
olddir=~/dotfiles_old             # old dotfiles backup directory
files="zshrc vimrc vim spacemacs emacs.d"          # list of files/folders to symlink in homedir

##########

# create dotfiles_old in homedir
echo -n "Creating $olddir for backup of any existing dotfiles in ~ ..."
mkdir -p $olddir
echo "done"

# change to the dotfiles directory
echo -n "Changing to the $dir directory ..."
cd $dir
echo "done"

# move any existing dotfiles in homedir to dotfiles_old directory, then create symlinks from the homedir to any files in the ~/dotfiles directory specified in $files
for file in $files; do
  echo "Moving any existing dotfiles from ~ to $olddir"
  mv ~/.$file ~/dotfiles_old/
  echo "Creating symlink to $file in home directory."
  ln -s $dir/$file ~/.$file
done

git clone https://github.com/gmarik/vundle.git ~/dotfiles/vim/bundle/vundle
vim +PluginInstall +qall

A test sh file

cd ~/dotfiles/
ls -la

dotfiles's People

Contributors

allforabit avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.