aboutsummaryrefslogtreecommitdiff
path: root/src/config/files/neovim/.vimrc
diff options
context:
space:
mode:
authorAaditya Dhruv <[email protected]>2025-06-14 10:12:33 +0530
committerAaditya Dhruv <[email protected]>2025-06-14 10:12:33 +0530
commitbd8919afb109efa0a92def766aca81f1e2e146fa (patch)
treea3cfbd93f8f0be44dd666969abdb20a27d6db84c /src/config/files/neovim/.vimrc
parent90b9ea4267ee04e1fe6f808ae322d4ad36edc693 (diff)
Update neovim, neomutt, and shell configurations
Diffstat (limited to 'src/config/files/neovim/.vimrc')
-rw-r--r--src/config/files/neovim/.vimrc40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/config/files/neovim/.vimrc b/src/config/files/neovim/.vimrc
deleted file mode 100644
index f74d01b..0000000
--- a/src/config/files/neovim/.vimrc
+++ /dev/null
@@ -1,40 +0,0 @@
-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 <C-Left> :bp<CR>
-nnoremap <C-Right> :bn<CR>
-inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
-inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
-inoremap <silent><expr> <CR> coc#pum#visible() ? coc#pum#confirm() : "\<CR>"
-noremap <C-f> :Files <CR>
-map <C-l> :Lines <CR>
-noremap <C-b> :Buffers <CR>
-
-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