This commit is contained in:
Daniel Flanagan 2019-02-18 11:40:40 -06:00
commit e53fb18fb3
4 changed files with 49 additions and 51 deletions

View file

@ -1,5 +1,3 @@
" bindings
" common typo fixes " common typo fixes
command! WQ wq command! WQ wq
command! Wq wq command! Wq wq

View file

@ -13,8 +13,55 @@ augroup PluginManagerInstaller
end end
augroup End augroup End
let g:airline_powerline_fonts = 1
let g:airline#extensions#tabline#enabled = 1 " automatically displays all buffers when there's only one tab open
let g:airline#extensions#tabline#fnamemod = ':t'
" set laststatus=2 " always show statusline
" set noshowmode " hides default mode
" cleanup/simplify airline
let g:airline#extensions#tabline#left_sep = ''
let g:airline#extensions#tabline#left_alt_sep = ''
let g:airline_right_alt_sep = ''
let g:airline_right_sep = ''
let g:airline_left_alt_sep= ''
let g:airline_left_sep = ''
let g:airline#extensions#tabline#buffers_label = ''
" short mode texts
let g:airline_mode_map = {
\ '__' : '-',
\ 'n' : 'N',
\ 'i' : 'I',
\ 'R' : 'R',
\ 'T' : 'T',
\ 't' : 'T',
\ 'c' : 'C',
\ 'v' : 'V',
\ 'V' : 'V',
\ '' : 'V',
\ 's' : 'S',
\ 'S' : 'S',
\ '' : 'S',
\ }
let g:indent_guide_auto_colors = 1
let g:indent_guides_enable_on_vim_startup = 1
" no ALE gutter
let g:ale_sign_column_always = 0
let g:ale_set_signs = 0
highlight clear ALEErrorSign
highlight clear ALEWarningSign
" fix me, baby
let g:ale_fix_on_save = 1
" autocomplete
let g:ale_completion_enabled = 1 let g:ale_completion_enabled = 1
let g:fzf_layout = { 'window': 'enew' }
" check if we're using vim as the manpage viewer before loading session plugins " check if we're using vim as the manpage viewer before loading session plugins
if exists('asmanviewer') if exists('asmanviewer')
let g:prosession_dir = '/dev/null' let g:prosession_dir = '/dev/null'

View file

@ -1,58 +1,9 @@
scriptencoding utf8 scriptencoding utf8
let g:airline_powerline_fonts = 1
let g:airline#extensions#tabline#enabled = 1 " automatically displays all buffers when there's only one tab open
let g:airline#extensions#tabline#fnamemod = ':t'
" set laststatus=2 " always show statusline
" set noshowmode " hides default mode
" cleanup/simplify airline
let g:airline#extensions#tabline#left_sep = ''
let g:airline#extensions#tabline#left_alt_sep = ''
let g:airline_right_alt_sep = ''
let g:airline_right_sep = ''
let g:airline_left_alt_sep= ''
let g:airline_left_sep = ''
let g:airline#extensions#tabline#buffers_label = ''
" short mode texts
let g:airline_mode_map = {
\ '__' : '-',
\ 'n' : 'N',
\ 'i' : 'I',
\ 'R' : 'R',
\ 'T' : 'T',
\ 't' : 'T',
\ 'c' : 'C',
\ 'v' : 'V',
\ 'V' : 'V',
\ '' : 'V',
\ 's' : 'S',
\ 'S' : 'S',
\ '' : 'S',
\ }
let g:indent_guide_auto_colors = 1
let g:indent_guides_enable_on_vim_startup = 1
" no ALE gutter
let g:ale_sign_column_always = 0
let g:ale_set_signs = 0
highlight clear ALEErrorSign
highlight clear ALEWarningSign
let g:fzf_layout = { 'window': 'enew' }
" ALE completeopt recommendation " ALE completeopt recommendation
set completeopt=menu,menuone,preview,noselect,noinsert set completeopt=menu,menuone,preview,noselect,noinsert
" set completeopt=noinsert,menuone,noselect,longest,preview " set completeopt=noinsert,menuone,noselect,longest,preview
" fix neovim cursor
let $NVIM_TUI_ENABLE_CURSOR_SHAPE = 1
" fix me, baby
let g:ale_fix_on_save = 1
" line number defaults " line number defaults
set nonumber set nonumber
set norelativenumber set norelativenumber

View file

@ -6,6 +6,8 @@ This is a Mixon Hill Inc. employee specific version of my dotfiles from here:
# My Dotfiles # My Dotfiles
**NOTE**: Readme needs updating!!
This repository contains the majority of application or OS configuration files This repository contains the majority of application or OS configuration files
I use on a daily basis. I keep the here and public in an effort to inform others I use on a daily basis. I keep the here and public in an effort to inform others
who may not know either how to go about organizing such files or to learn how to who may not know either how to go about organizing such files or to learn how to