1
0
forked from extern/nix-config

Update dots

This commit is contained in:
Donovan Glover 2018-09-10 15:09:00 -04:00
parent 0f7f51e81c
commit 37cd921aca
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D
4 changed files with 13 additions and 0 deletions

View File

@ -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
####################################################################

View File

@ -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 "➤"

View File

@ -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

View File

@ -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