-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: databricks dotfiles * refactor: cleanup dotfiles/.vimrc * feat: go, databricks dotfiles * chore: ignore ipython sqlite db * refactor: shell funcs * feat: lsd * feat: ups * feat: keeping on up * feat: wsl fun * fix: rm yaml fix from nix default * feat: wsl fun * feat: ups
- Loading branch information
1 parent
3d7b3a6
commit fe09400
Showing
11 changed files
with
343 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Setup fzf | ||
# --------- | ||
if [[ ! "$PATH" == "*$HOME/.fzf/bin*" ]]; then | ||
export PATH="$PATH:$HOME/.fzf/bin" | ||
if [[ ! "$PATH" == */home/adam/.fzf/bin* ]]; then | ||
PATH="${PATH:+${PATH}:}/home/adam/.fzf/bin" | ||
fi | ||
|
||
# Auto-completion | ||
# --------------- | ||
[[ $- == *i* ]] && source "$HOME/.fzf/shell/completion.bash" 2> /dev/null | ||
source "/home/adam/.fzf/shell/completion.bash" | ||
|
||
# Key bindings | ||
# ------------ | ||
source "$HOME/.fzf/shell/key-bindings.bash" | ||
source "/home/adam/.fzf/shell/key-bindings.bash" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# ~/.profile: executed by the command interpreter for login shells. | ||
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login | ||
# exists. | ||
# see /usr/share/doc/bash/examples/startup-files for examples. | ||
# the files are located in the bash-doc package. | ||
|
||
# the default umask is set in /etc/profile; for setting the umask | ||
# for ssh logins, install and configure the libpam-umask package. | ||
#umask 022 | ||
|
||
# if running bash | ||
if [ "$BASH_VERSION" != "" ]; then | ||
# include .bashrc if it exists | ||
if [ -f "$HOME/.bashrc" ]; then | ||
. "$HOME/.bashrc" | ||
fi | ||
fi | ||
|
||
# set PATH so it includes user's private bin if it exists | ||
if [ -d "$HOME/bin" ] ; then | ||
PATH="$HOME/bin:$PATH" | ||
fi | ||
|
||
# set PATH so it includes user's private bin if it exists | ||
if [ -d "$HOME/.local/bin" ] ; then | ||
PATH="$HOME/.local/bin:$PATH" | ||
fi | ||
|
||
if [ -e /home/adam/.nix-profile/etc/profile.d/nix.sh ]; then . /home/adam/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer | ||
|
||
eval "$(zoxide init bash)" | ||
|
||
# pyenv | ||
source "$HOME/dotfiles/macos/pyenv-flags" | ||
export PYENV_ROOT="$HOME/.pyenv" | ||
export PATH="$PYENV_ROOT/bin:$PATH" | ||
eval "$(pyenv init --path)" | ||
eval "$(pyenv virtualenv-init -)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,3 @@ | ||
-- Entrypoint | ||
-- The order of the `require` below is important. | ||
-- require("adam.plugins") | ||
-- require("adam.color") | ||
-- require("adam.alpha") | ||
-- require("adam.cmp") | ||
-- require("adam.gitsigns") | ||
-- require("adam.lsp") | ||
-- require("adam.format") | ||
-- require("adam.lint") | ||
-- require("adam.lualine") | ||
-- require("adam.luasnip") | ||
-- require("adam.pairs") | ||
-- require("adam.telescope") | ||
-- require("adam.treesitter") | ||
-- require("adam.whichkey") | ||
-- require("adam.barbar") | ||
-- require("adam.copilot") | ||
-- require("adam.signature") | ||
-- require("adam.keys") | ||
|
||
vim.lsp.set_log_level("debug") | ||
require("config.options") | ||
require("config.lazy") | ||
require("config.keymaps") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
source /home/adam/dotfiles/dotfiles/.bashrc | ||
source /home/adam/dotfiles/scripts/aliases.sh | ||
|
||
alias docs='cd ~/onedrive/docs' | ||
alias od='cd ~/onedrive' | ||
export TODO_DIR="/home/adam/onedrive/docs" |