Skip to content

Commit

Permalink
new gc file for bashrc, fixed nvim weird indenting rules
Browse files Browse the repository at this point in the history
  • Loading branch information
eagledb14 committed Aug 26, 2023
1 parent 4a270c7 commit c8e626a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,14 @@ alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias la='ls -A'
alias vi='nvim'
alias gc='git commit -a'
alias gp='git push'


function gc {
git add .
git commit
}

#functions
#go to class folder
function class {
Expand Down
3 changes: 2 additions & 1 deletion nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ o.tabstop = 2
o.softtabstop = 2
o.shiftwidth = 2
o.expandtab = true
o.smartindent = true
-- o.smartindent = true
o.autoindent = true
o.swapfile = false

-- window
Expand Down

0 comments on commit c8e626a

Please sign in to comment.