diff --git a/tmux.conf b/tmux.conf index e9d305f..0a56061 100644 --- a/tmux.conf +++ b/tmux.conf @@ -29,6 +29,7 @@ set -g status-left-length "20" set -g status-right-length "40" set -g default-terminal "tmux" set -g terminal-overrides ',xterm-256color:Tc' +set -g terminal-overrides ',rxvt-unicode:Tc' set -g status-position "bottom" set -g status-justify "left" set -g status-left-length "100" diff --git a/vimplugins b/vimplugins index 81f5437..424ce51 100644 --- a/vimplugins +++ b/vimplugins @@ -22,6 +22,7 @@ Plug 'w0rp/ale', { 'for': 'python' } " colorschemes Plug 'lifepillar/vim-solarized8' +Plug 'KeitaNakamura/neodark.vim' " syntax highlight plugins Plug 'sheerun/vim-polyglot' diff --git a/vimrc b/vimrc index 6587916..6992826 100644 --- a/vimrc +++ b/vimrc @@ -1,6 +1,6 @@ " various settings -set nobackup number nomodeline backspace=indent,eol,start -set bg=light foldmethod=marker ttymouse=xterm2 mouse= +set nobackup nomodeline backspace=indent,eol,start foldmethod=marker mouse= +set cursorline bg=light " hidden characters set list listchars=tab:\|_,nbsp:x,trail:* " search @@ -20,7 +20,7 @@ set statusline=[%F]\ %R%H%W%M\ %=[%{&fenc}/%{&ff}]\ %y\ [%4l/%L:%3v] let g:sh_indent_case_labels=1 " version specific settings if v:version >= 703 - set colorcolumn=80 relativenumber formatoptions+=j + set colorcolumn=80 relativenumber formatoptions+=j ttymouse=sgr endif if v:version >= 800 set breakindent @@ -38,16 +38,11 @@ inoremap lnoremap cnoremap "some toggles -nnoremap n :setlocal number! -nnoremap r :setlocal relativenumber! nnoremap l :setlocal list! nnoremap c :setlocal cursorline! -nnoremap v :setlocal wrap! +nnoremap w :setlocal wrap! "turn off highlight until next search nnoremap / :noh -"home / end -noremap H ^ -noremap L $ "copy to / paste from clipboard vmap y "+y vmap d "+d @@ -56,13 +51,9 @@ nmap P "+P vmap p "+p vmap P "+P "move macro somewhere I won't accidentally use it -noremap Q q noremap q "quit / save -nnoremap qq :q -nnoremap qf :q! -nnoremap qa :qa -nnoremap qs :wq +nnoremap q :q nnoremap s :w " mouse toggle