Skip to content

Commit

Permalink
Initial commit with nvim, bootstrap ... etc
Browse files Browse the repository at this point in the history
  • Loading branch information
rsampaths16 committed May 23, 2021
0 parents commit 9c1be68
Show file tree
Hide file tree
Showing 8 changed files with 3,132 additions and 0 deletions.
Empty file added .gitignore
Empty file.
137 changes: 137 additions & 0 deletions .zshrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH

# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"

# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="robbyrussell"

# Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load
# a theme from this variable instead of looking in $ZSH/themes/
# If set to an empty array, this variable will have no effect.
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )

# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"

# Uncomment the following line to use hyphen-insensitive completion.
# Case-sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true"

# Uncomment the following line to disable bi-weekly auto-update checks.
# DISABLE_AUTO_UPDATE="true"

# Uncomment the following line to automatically update without prompting.
# DISABLE_UPDATE_PROMPT="true"

# Uncomment the following line to change how often to auto-update (in days).
# export UPDATE_ZSH_DAYS=13

# Uncomment the following line if pasting URLs and other text is messed up.
# DISABLE_MAGIC_FUNCTIONS="true"

# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"

# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE="true"

# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"

# Uncomment the following line to display red dots whilst waiting for completion.
# Caution: this setting can cause issues with multiline prompts (zsh 5.7.1 and newer seem to work)
# See https://github.com/ohmyzsh/ohmyzsh/issues/5765
# COMPLETION_WAITING_DOTS="true"

# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"

# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# You can set one of the optional three formats:
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# or set a custom format using the strftime function format specifications,
# see 'man strftime' for details.
# HIST_STAMPS="mm/dd/yyyy"

# Would you like to use another custom folder than $ZSH/custom?
# ZSH_CUSTOM=/path/to/new-custom-folder

# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)

source $ZSH/oh-my-zsh.sh

# User configuration

# export MANPATH="/usr/local/man:$MANPATH"

# You may need to manually set your language environment
# export LANG=en_US.UTF-8

# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
# export EDITOR='vim'
# else
# export EDITOR='mvim'
# fi

# Compilation flags
# export ARCHFLAGS="-arch x86_64"

# Set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
# For a full list of active aliases, run `alias`.
#
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"

# Do [[ -z $WORK_PROFILE ]] to test if work profile is enabled
# Do [[ ! -z $WORK_PROFILE ]] to test if work profile is disabled

if [[ -e "$HOME/.dotfiles-work" ]] then
export WORK_PROFILE=1
fi

# TODO: Source profiles specific to
# source $HOME/.zshrc-common
# source $HOME/.zshrc-home
# source $HOME/.zshrc-work

# Explicity state UTF-8 is supported ( tmux is breaking otherwise )
export LC_ALL=en_IN.UTF-8
export LANG=en_IN.UTF-8
export EDITOR=nvim

if [[ -z $WORK_PROFILE ]] then
for bin_path in $HOME/bin/*/bin; do
export PATH=$bin_path:$PATH
done
export PATH=$HOME/.local/bin:$PATH

export PATH="$HOME/.jdks/openjdk-14/bin:$PATH"
export PATH="/usr/local/go/bin:$PATH"
export PATH="$HOME/gems/bin:$PATH"

export JAR=$HOME/bin/eclipse.jdt.ls/org.eclipse.jdt.ls.product/target/repository/plugins/org.eclipse.equinox.launcher_1.6.100.v20201223-0822.jar
export JAVA_HOME=$HOME/.jdks/openjdk-14
export GRADLE_HOME=$HOME/bin/gradle/gradle-6.8.3
export JDTLS_CONFIG=$HOME/bin/eclipse.jdt.ls/org.eclipse.jdt.ls.product/target/repository/config_linux

# Install gems in GEM_HOME
export GEM_HOME="$HOME/gems"
fi
22 changes: 22 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
The MIT License (MIT)
=====================

Copyright (c) 2021 Sampath

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# ~/.dotfiles
26 changes: 26 additions & 0 deletions dotfiles.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: How I setup my dotfiles
date: Tuesday 27 April 2021 02:34:28 PM IST
---
# How I setup my dotfiles

## Problems
### How to bootstrap properly?

1. How do I set the `$DOTFILES` directory properly.
I'm starting my dotfiles journey by trying to setup my nvim configuration.
A problem that I've faced right now is how to set the $DOTFILES directory?

present working directory `$(pwd)` isn't working as it changes according to
where the script is run, instead of where the script actually is.

```bash
cd "$(dirname "$0")/.."
DOTFILES=$(pwd -P)
```

2. ln -sf $dir1 $dir2 behaves abnormally when $dir2 already exists
if $dir2 already exists a link to $dir1 is put inside $dir1
```
ln -s -T TARGET LINK_NAME # treats target as a name
```
Loading

0 comments on commit 9c1be68

Please sign in to comment.