From 01c9965e1d4d03e398ad832a49fc9a23002585e2 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Mon, 22 May 2017 11:33:24 -0400 Subject: [PATCH] Allows FZF to search hidden files (excluding .git) --- configs/#.vimrc# | 479 ----------------------------------------- configs/#.zsh_profile# | 51 ----- configs/.emacs | 4 +- configs/.zsh_profile | 5 + 4 files changed, 7 insertions(+), 532 deletions(-) delete mode 100644 configs/#.vimrc# delete mode 100644 configs/#.zsh_profile# diff --git a/configs/#.vimrc# b/configs/#.vimrc# deleted file mode 100644 index 84fc89065..000000000 --- a/configs/#.vimrc# +++ /dev/null @@ -1,479 +0,0 @@ -" -- BEGIN: Vundle config -- -set nocompatible " be iMproved, required -filetype off " required - -" set the runtime path to include Vundle and initialize -set rtp+=~/.vim/bundle/Vundle.vim -call vundle#begin() -" alternatively, pass a path where Vundle should install plugins -"call vundle#begin('~/some/path/here') - -" let Vundle manage Vundle, required -Plugin 'VundleVim/Vundle.vim' - -" The following are examples of different formats supported. -" Keep Plugin commands between vundle#begin/end. - -" Displays git information in airline. -Plugin 'tpope/vim-fugitive' - -" Displays git-tracked C*UD ops within gutter. -Plugin 'airblade/vim-gitgutter' - -" Fuzzy-finder -Plugin 'kien/ctrlp.vim' - -" Grep file contents -Plugin 'mileszs/ack.vim' - -" JS support -Plugin 'pangloss/vim-javascript' - -" Visual dir-tree navigation -Plugin 'scrooloose/nerdtree' - -" Syntax Highlighting Support -Plugin 'lambdatoast/elm.vim' - - this is a test - so is this - - -" Elixir Plugins -Plugin 'elixir-lang/vim-elixir' -Plugin 'slashmili/alchemist.vim' -Plugin 'powerman/vim-plugin-AnsiEsc' - -" TypeScript Plugins -Plugin 'rschmukler/typescript-vim' - -" Themes -Plugin 'sickill/vim-monokai' -Plugin 'altercation/vim-colors-solarized' -Plugin 'mhartington/oceanic-next' - -" Executes shell commands and pipes output into new Vim buffer. -Plugin 'sjl/clam.vim' - -" Multiple cursors for simultaneous edits. -" NOTE: use to run miltiple cursors not -Plugin 'terryma/vim-multiple-cursors' - -" Visualize buffers -Plugin 'vim-airline/vim-airline' -Plugin 'vim-airline/vim-airline-themes' - -" Visually align assignments -Plugin 'godlygeek/tabular' - -" Visually Highlight and comment code. -Plugin 'tpope/vim-commentary' - -" Macros for quotes, parens, etc. -Plugin 'tpope/vim-surround' - -" Allows Plugins to be repeated with `.` character -Plugin 'tpope/vim-repeat' - -" Seamlessly navigate Vim and Tmux with similar bindings. -Plugin 'christoomey/vim-tmux-navigator' - -" Async `:make` for code linting etc. -Plugin 'neomake/neomake' - -" Color pack -Plugin 'flazz/vim-colorschemes' - -" Dash integration (macOS only) -Plugin 'rizzatti/dash.vim' - -" Better buffer mgt than CtrlP -Plugin 'yegappan/mru' - -Plugin 'zanglg/nova.vim' - -call vundle#end() " required -filetype plugin indent on " required -" Put your non-Plugin stuff after this line -" -- END: Vundle config -- - - -" Basic settings -set number -set wrap! -set tabstop=2 -set expandtab -set shiftwidth=2 -set background=dark - -syntax enable -colorscheme nova - -set termguicolors - -set history=1000 -set undolevels=1000 - -set t_Co=255 - -" Support italics -highlight Comment cterm=italic - -" Changes to character. -let mapleader = " " - - -" Auto resize window splits -autocmd VimResized * wincmd = - - -" Neomake Settings -autocmd! BufWritePost * Neomake - -" Elixir linting -let g:neomake_elixir_credo_maker = { - \ 'exe': 'mix', - \ 'args': ['credo', 'list', '%:p', '--format=oneline'], - \ 'errorformat': - \ '%W[F] %. %f:%l:%c %m,' . - \ '%W[F] %. %f:%l %m,' . - \ '%W[R] %. %f:%l:%c %m,' . - \ '%W[R] %. %f:%l %m,' . - \ '%I[C] %. %f:%l:%c %m,' . - \ '%I[C] %. %f:%l %m,' . - \ '%-Z%.%#' - \ } - - -" Alchemist settings -let g:alchemist#elixir_erlang_src = '/usr/local/share/src' - - -" Airline Settings -" Enables the list of buffers. -let g:airline#extensions#tabline#enabled = 1 - -" Buffer numbers alongside files -let g:airline#extensions#tabline#buffer_nr_show = 1 - -" Shows the filename only. -let g:airline#extensions#tabline#fnamemod = ':t' - -" Allow glyphs in airline -let g:airline_powerline_fonts = 1 - -" Change Airline theme -let g:airline_theme = 'hybrid' - - -" Jump to buffers. -nmap :1b -nmap :2b -nmap :3b -nmap :4b -nmap :5b -nmap :6b -nmap :7b -nmap :8b -nmap :9b - - -" It's the twenty-first century...no swaps. -set noswapfile - - -" Allow visual tab completion in command mode -set wildmenu - - -" Show Vim commands as they're being input. -set showcmd - - -" Code folding -set foldmethod=indent -set foldnestmax=10 -set nofoldenable -set foldlevel=4 - - -" Use relative line numbers -set relativenumber - - -" emulate ci" and ci' behavior -nnoremap ci( f(%ci( -nnoremap ci[ f[%ci[ - - -" extend functionality of & scrolling -nnoremap j -vnoremap j -nnoremap k -vnoremap k - - -" Opens all folds within the buffer -nnoremap ZZ zR - -" Closes all folds within the buffer -nnoremap zz zM - -" Opens all folds beneath the cursor -" NOTE: j is the character to go down -nnoremap zJ zO - -" Opens single fold beneath the cursor -" NOTE: j is the character to go down -nnoremap zj zo - -" Opens single fold beneath the cursor -" NOTE: k is the character to go down -nnoremap zK zC - -" Opens single fold beneath the cursor -" NOTE: k is the character to go down -nnoremap zk zc - - -" Lookup Dash word under cursor in Dash -nnoremap j :Dash - - -" Save shortcut -nnoremap :w - - -" Switch to MRU'd buffer -nnoremap - - -" Alternative MRU to CtrlP MRU -nnoremap b :MRU - - -" Supports mouse interaction. -set mouse=a - - -" Highlights matches during a search. -set hlsearch - -" Clear highlight -noremap / :nohlsearch - - -" backspace settings -set backspace=2 -set backspace=indent,eol,start - - -" Javascript specific variables -let g:javascript_plugin_jsdoc = 1 - -" GlobalListchars -set list -set listchars=tab:··,trail:·,nbsp:· - - -" Keeps everything concealed at all times. Even when cursor is on the word. -set conceallevel=1 -set concealcursor=nvic - - -" map jk to -inoremap jk - - -" Conventional Emacs line-editor defaults -" NOTE: interferes w/ current tmux prefix -inoremap I -inoremap A - - -" Manage Vertical and Horizontal splits -nnoremap sl :vsl -nnoremap sh :vs -nnoremap sj :spj -nnoremap sk :sp - - -" Delete (i.e. "close") the currently opened buffer -" TODO: unless it's a split window, which should be :q -nnoremap q :bdelete - - -" Set CtrlP runtime path -set runtimepath^=~/.vim/bundle/ctrlp.vim - - -" Buffer creation and management -" Buffer movement -nnoremap :1bnext -nnoremap :1bprevious - - -" make Y do what is intuitive given: -" D: deletes until EOL -" C: changes until EOL -" Y: (should) yank until EOL -nnoremap Y y$ - - -" scrolling and maintaing mouse position -" nnoremap j -" nnoremap k - - -" Shorter binding for window rotations -nnoremap - - -" remap redo key that is eclipsed by `rotate` currently -nnoremap U :redo - - -" Define highlighting groups -" NOTE: The ANSII aliases for colors will change when iTerm2 settings are -" changed. -highlight InterestingWord1 ctermbg=Magenta ctermfg=Black -highlight InterestingWord2 ctermbg=Blue ctermfg=Black - -" h1 highlighting -nnoremap 1 :execute '2match InterestingWord1 /\<\>/' -nnoremap x1 :execute '2match none' -vnoremap 1 :execute '2match InterestingWord1 /\<\>/' - -" h2 highlighting -nnoremap 2 :execute '3match InterestingWord2 /\<\>/' -nnoremap x2 :execute '3match none' - -"clear all highlighted groups -nnoremap xx :execute '2match none' :execute '3match none' hh - - -" pasteboard copy & paste -nnoremap V"+y -vnoremap "+y - -inoremap "+pa -" nnoremap o"+p -vnoremap "+p - - -" Manage 80 char line limits -highlight OverLength1 ctermbg=Magenta ctermfg=Black -highlight OverLength2 ctermbg=LightMagenta ctermfg=Black -highlight OverLength3 ctermbg=White ctermfg=Black -" match OverLength3 /\%81v.\+/ -match OverLength2 /\%91v.\+/ -" match OverLength3 /\%101v.\+/ - - -" Toggle word-wrapping -nnoremap w :set wrap! - - -" Resize split to 10,20,...,100 chars -" Uncomment the next lines for support at those sizes. -" These bindings interfere with the highlight groups, however. -" Increases the width of a vertical split. -" nnoremap 1 :vertical resize 10 -" nnoremap 2 :vertical resize 20 -nnoremap 3 :vertical resize 30 -nnoremap 4 :vertical resize 40 -nnoremap 5 :vertical resize 50 -nnoremap 6 :vertical resize 60 -nnoremap 7 :vertical resize 70 -nnoremap 8 :vertical resize 80 -nnoremap 9 :vertical resize 90 -nnoremap 0 :vertical resize 100 - - -" Increases the height of a horizontal split. -nnoremap v1 :resize 5 -nnoremap v2 :resize 10 -nnoremap v3 :resize 15 -nnoremap v4 :resize 20 -nnoremap v5 :resize 25 -nnoremap v6 :resize 30 -nnoremap v7 :resize 35 -nnoremap v8 :resize 40 -nnoremap v9 :resize 45 -nnoremap v0 :resize 50 - - -" NERDTree settings -" Show hidden files by default. (Toggle with capital 'i') -let NERDTreeShowHidden = 1 - -" View Directory tree with ctrl + n -nnoremap n :NERDTreeToggle - -" View open buffer location in tree. -nnoremap f :NERDTreeFind - - -" BOL and EOL -nnoremap H ^ -vnoremap H ^ -nnoremap L $ -vnoremap L $ - - -" Search for visually selected text -vnoremap // y/"N - - -" trim trailing whitespace on save -autocmd BufWritePre *.{js,py,tpl,less,html,ex,exs,txt} :%s/\s\+$//e - - -" Use .gitignore file to populate Ctrl-P -let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files . -co --exclude-standard', 'find %s -type f'] - - -" Ignores dirs and files -let g:ctrlp_custom_ignore = { - \ 'dir': 'node_modules', - \ 'file': '\v\.(exe|dll|png|jpg|jpeg)$' -\} - - -" WIP: Run elixir tests on that line -" TODO: only register binding in *.exs? file extensions -nnoremap t :call ExTestToggle() - - -" Jumps from an Elixir module file to an Elixir test file. -fun! ExTestToggle() - if expand('%:e') == "ex" - - let test_file_name = expand('%:t:r') . "_test.exs" - let test_file_dir = substitute(expand('%:p:h'), "/lib/", "/test/", "") - let full_test_path = join([test_file_dir, test_file_name], "/") - - e `=full_test_path` - - elseif match(expand('%:t'), "_test.exs") != -1 - - let test_file_name = expand('%:t:r') - let offset_amt = strlen(test_file_name) - strlen("_test") - let module_file_name = strpart(test_file_name, 0, offset_amt) . ".ex" - let module_file_dir = substitute(expand('%:p:h'), "/test/", "/lib/", "") - let full_module_path = join([module_file_dir, module_file_name], "/") - - e `=full_module_path` - - endif -endfun - - -" Creates intermediate directories and file to match current buffer's filepath -fun! CreateNonExistingDirsAndFile() - ! echo "Creating directory..." && mkdir -p %:p:h && echo "Created directory." && echo "Creating file..." && touch %:t:p && echo "Created file." - - " Write the buffer to the recently created file. - w -endfun - diff --git a/configs/#.zsh_profile# b/configs/#.zsh_profile# deleted file mode 100644 index 042fd2f6f..000000000 --- a/configs/#.zsh_profile# +++ /dev/null @@ -1,51 +0,0 @@ -export PATH=$HOME/bin:/opt/local/bin:/opt/local/sbin:/usr/local/go/bin:/usr/local/sbin:$PATH - -# make vim the default editor for commit messages etc -export EDITOR=$(which vim) - - -echo "Welcome back, $USER" - -# display the space available on each mounted Volume -df -hl - -# use vi bindings for terminal input -set -o vi - -# aliases -source $HOME/pc_settings/aliases.sh - -# functions -source $HOME/pc_settings/functions/index.sh - -# setup keybindings for history functions -source $HOME/pc_settings/scripts/setup_keybindings.sh - - -# BEGIN: bindkeys -bindkey "^R" history-incremental-search-backward - -bindkey -M viins 'jk' vi-cmd-mode -# END: bindkeys - -# export docker env variables -# re-enable this line when using docker otherwise you will receive -# a TLS error since docker-machine won't be running -# eval "$(docker-machine env default)" - -# run cmatrix command for 3 seconds before exiting -#. $HOME/pc_settings/.matrix_intro.sh - -# syntax highlighting for CLI; if not installed, run the following command -# brew install zsh-syntax-highlighting -source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh - -# Regain control of CLI