diff --git a/homeConfig/modules/bash/config/alias.nix b/homeConfig/modules/bash/config/alias.nix index 41d7dae..2c63c08 100644 --- a/homeConfig/modules/bash/config/alias.nix +++ b/homeConfig/modules/bash/config/alias.nix @@ -1,4 +1,2 @@ { - hmup = "home-manager switch --flake '$HOME/Documents/projects/nixos#bryan'"; - nixup = "sudo nixos-rebuild switch --flake '$HOME/Documents/projects/nixos#socrates'"; } diff --git a/homeConfig/modules/bash/config/bashrc.nix b/homeConfig/modules/bash/config/bashrc.nix index 4d6d865..1d3c679 100644 --- a/homeConfig/modules/bash/config/bashrc.nix +++ b/homeConfig/modules/bash/config/bashrc.nix @@ -1,6 +1,9 @@ '' export EDITOR=nvim +alias hmup="home-manager switch --flake '$HOME/Documents/projects/nixos#bryan'"; +alias nixup="sudo nixos-rebuild switch --flake '$HOME/Documents/projects/nixos#socrates'"; + function cdg() { if [[ $1 == "--help" ]]; then echo "A simple utility for navigating to the root of a git repo" diff --git a/homeConfig/modules/neovim/config/lazyvim/lua/config/options.lua b/homeConfig/modules/neovim/config/lazyvim/lua/config/options.lua index 51db980..6c78af5 100644 --- a/homeConfig/modules/neovim/config/lazyvim/lua/config/options.lua +++ b/homeConfig/modules/neovim/config/lazyvim/lua/config/options.lua @@ -2,7 +2,7 @@ -- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua -- Add any additional options here -vim.opt.tabstop = 4 -vim.opt.shiftwidth = 4 -vim.opt.softtabstop = 4 +vim.opt.tabstop = 2 +vim.opt.shiftwidth = 2 +vim.opt.softtabstop = 2 vim.opt.expandtab = true