diff options
author | Aaditya Dhruv <[email protected]> | 2023-11-27 21:15:08 -0600 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2023-11-27 21:15:08 -0600 |
commit | f03ea918e8591ba5794e5e1c4b9426138f72ab32 (patch) | |
tree | 70640d31f8f16fbc70d77a82512d2287b2ab0246 /src/config/files/shell/.vimrc | |
parent | 486298c62f5586dcd4904079c4633b000538c8b0 (diff) |
tmux.conf -> bindings for saving and scrolling
zsh/p10k -> new layouts and aliases
vimrc -> New plugins for tmux and tab bindings
new wallpapers
Diffstat (limited to 'src/config/files/shell/.vimrc')
-rw-r--r-- | src/config/files/shell/.vimrc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/config/files/shell/.vimrc b/src/config/files/shell/.vimrc index 658eac5..5a4e376 100644 --- a/src/config/files/shell/.vimrc +++ b/src/config/files/shell/.vimrc @@ -10,14 +10,17 @@ call vundle#begin() set bs=2 set ts=8 -set sw=8 +set tw=80 set t_Co=256 set number set ruler +set shiftwidth=2 smarttab +set expandtab -nnoremap <C-Left> :tabprevious<CR> -nnoremap <C-Right> :tabnext<CR> + +nnoremap <C-Left> :bp<CR> +nnoremap <C-Right> :bn<CR> nnoremap <C-Up> :tabfirst<CR> nnoremap <C-Down> :tablast<CR> nnoremap <C-S-Right> :tabmove +1<CR> @@ -25,10 +28,6 @@ nnoremap <C-S-Left> :tabmove -1<CR> map <F1> :NERDTreeTabsToggle<CR> noremap <C-f> :Files <CR> xnoremap <C-c> :s/^/\/\/ <CR> -nnoremap <Tab> >> -nnoremap <S-Tab> << -xnoremap <Tab> > -xnoremap <S-Tab> < nmap <C-p> <Plug>MarkdownPreviewToggle @@ -49,10 +48,11 @@ Plugin 'valloric/youcompleteme' Plugin 'junegunn/fzf' Plugin 'junegunn/fzf.vim' Plugin 'iamcco/markdown-preview.nvim' +Plugin 'tpope/vim-obsession' " All of your Plugins must be added before the following line let g:airline_theme='gruvbox_material' -let g:airline_powerline_fonts = 1 +let g:airline_powerline_fonts = 0 let g:AutoClosePreserveDotReg = 0 let g:airline#extensions#tabline#enabled = 1 let g:airline#extensions#tabline#formatter = 'unique_tail' |