aboutsummaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-08-12 15:23:16 +0200
committerWilliam Hergès <william@herges.fr>2025-08-12 15:23:51 +0200
commit29d50556c1015a1c80c88467f358ed386163a10d (patch)
tree316e5c9b97f98f0818bbdbb9b7a7df04a4338c16 /.vimrc
parent4a21ae6fcdfcd0051a2e6fee641cd344c01dac83 (diff)
feat(config): sway
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc35
1 files changed, 0 insertions, 35 deletions
diff --git a/.vimrc b/.vimrc
deleted file mode 100644
index 8793f13..0000000
--- a/.vimrc
+++ /dev/null
@@ -1,35 +0,0 @@
-set nocompatible " be iMproved, required
-filetype off " required
-
-syntax on
-colorscheme onedark
-
-" set the runtime path to include Vundle and initialize
-set rtp+=~/.vim/bundle/Vundle.vim
-call vundle#begin()
-
-" let Vundle manage Vundle, required
-Plugin 'VundleVim/Vundle.vim'
-
-" Plugins
-Plugin 'godlygeek/tabular'
-" Plugin 'preservim/vim-markdown'
-Plugin 'vim-pandoc/vim-pandoc'
-Plugin 'vim-pandoc/vim-pandoc-syntax'
-Plugin 'WolfgangMehner/latex-support'
-
-
-call vundle#end() " required
-filetype plugin indent on " required
-
-set number relativenumber
-
-nnoremap <C-Left> :tabprevious<CR>
-nnoremap <C-Right> :tabnext<CR>
-nnoremap <C-j> :tabprevious<CR>
-nnoremap <C-k> :tabnext<CR>
-nnoremap <C-q> :tabclose<CR>
-
-:command Ttp !pdflatex %:t
-
-set shell=/bin/bash