forked from extern/nix-config
Update dots
This commit is contained in:
parent
0f7f51e81c
commit
37cd921aca
@ -24,6 +24,9 @@ alias l="exa -1" # Show each output from ls on a separate line
|
||||
|
||||
alias where="type" # An alternative for shells that don't use the where command
|
||||
|
||||
alias ...="cd ../.." # Easily go up 2 directories
|
||||
alias ....="cd ../../.." # Easily go up 3 directories
|
||||
|
||||
####################################################################
|
||||
# Volume aliases
|
||||
####################################################################
|
||||
|
@ -12,6 +12,7 @@ function fish_prompt
|
||||
set_color yellow; echo -n "$USER@$hostname"
|
||||
set_color normal; echo -n " "
|
||||
set_color magenta; echo -n "($pwd)"
|
||||
#set_color magenta; echo -n "$pwd"
|
||||
set_color normal; echo -n " "
|
||||
set_color red; echo -n "➤"
|
||||
set_color green; echo -n "➤"
|
||||
|
@ -2,5 +2,12 @@
|
||||
" Copyright (C) 2017-2018 Donovan Glover
|
||||
|
||||
set runtimepath^=~/.vim runtimepath+=~/.vim/after
|
||||
|
||||
let &packpath = &runtimepath
|
||||
|
||||
" Enable global clipboard support for all vim commands in neovim
|
||||
" NOTE: It may be better to just add a keybind for "+(y), or just
|
||||
" use that instead.
|
||||
set clipboard=unnamedplus
|
||||
|
||||
source ~/.vimrc
|
||||
|
@ -41,3 +41,5 @@ set shiftwidth=4 " Make autoindent appear as 4 spaces
|
||||
|
||||
set expandtab " When using <Tab>, replace the tab character with 4 spaces
|
||||
set smarttab " Always indent based on column number to align things easier
|
||||
|
||||
set mouse=a " Enable mouse support in (a)ll modes
|
||||
|
Loading…
Reference in New Issue
Block a user