Changed how my scripts are referenced in .bashrc and added .vimrc
This commit is contained in:
parent
fb05eb5c39
commit
21b3f429bf
6
.bashrc
6
.bashrc
|
@ -7,8 +7,8 @@
|
||||||
|
|
||||||
alias ls='ls --color=auto'
|
alias ls='ls --color=auto'
|
||||||
alias grep='grep --color=auto'
|
alias grep='grep --color=auto'
|
||||||
alias etouch='touchpad enable'
|
|
||||||
alias dtouch='touchoad disable'
|
|
||||||
alias vi='vim'
|
alias vi='vim'
|
||||||
|
|
||||||
export PATH=$PATH:~/bin
|
HISTFILE=~/.bash_history/bash_history
|
||||||
|
|
||||||
|
export PATH=$PATH:~/.dotfiles/bin
|
||||||
|
|
13
.vimrc
Normal file
13
.vimrc
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
syntax on
|
||||||
|
set tabstop=4
|
||||||
|
set shiftwidth=4
|
||||||
|
set softtabstop=4
|
||||||
|
set autoindent
|
||||||
|
set smartindent
|
||||||
|
set termguicolors
|
||||||
|
set number
|
||||||
|
packadd termdebug
|
||||||
|
nnoremap <Leader>cc :set colorcolumn=80<cr>
|
||||||
|
nnoremap <Leader>ncc :set colorcolumn-=80<cr>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue