From bd8919afb109efa0a92def766aca81f1e2e146fa Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sat, 14 Jun 2025 10:12:33 +0530 Subject: Update neovim, neomutt, and shell configurations --- src/config/files/neovim/vimrc | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/config/files/neovim/vimrc (limited to 'src/config/files/neovim/vimrc') diff --git a/src/config/files/neovim/vimrc b/src/config/files/neovim/vimrc new file mode 100644 index 0000000..f74d01b --- /dev/null +++ b/src/config/files/neovim/vimrc @@ -0,0 +1,40 @@ +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() + +set bs=2 +set tabstop=8 +set softtabstop=8 +set textwidth=80 +set shiftwidth=4 smarttab +set expandtab +set t_Co=256 +set number +set ruler + +nnoremap :bp +nnoremap :bn +inoremap pumvisible() ? "\" : "\" +inoremap pumvisible() ? "\" : "\" +inoremap coc#pum#visible() ? coc#pum#confirm() : "\" +noremap :Files +map :Lines +noremap :Buffers + +Plugin 'VundleVim/Vundle.vim' +Plugin 'tpope/vim-surround' +Plugin 'airblade/vim-gitgutter' +Plugin 'junegunn/fzf' +Plugin 'junegunn/fzf.vim' +Plugin 'tpope/vim-fugitive' +Plugin 'tpope/vim-obsession' +Plugin 'neoclide/coc.nvim' +Plugin 'sainnhe/gruvbox-material' + +let g:AutoClosePreserveDotReg = 0 +let g:gruvbox_material_background = 'hard' + +set background=dark +colorscheme gruvbox-material +call vundle#end() +filetype plugin indent on +syntax enable -- cgit