Add vim table mode plugin

This commit is contained in:
CramMK
2020-06-12 14:35:37 +02:00
parent 3807afc0f7
commit 2c37d21295
2 changed files with 3 additions and 2 deletions

View File

@@ -42,6 +42,6 @@ i3lock \
--veriftext="Tadasu..." \ --veriftext="Tadasu..." \
--noinputtext="" \ --noinputtext="" \
--locktext="Itterasshai!" \ --locktext="Itterasshai!" \
--wrongtext="Chigau!" \ --wrongtext="Machigau!" \
\ \
--ring-width 4 --ring-width 4

View File

@@ -8,6 +8,7 @@ Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive' " Git wrapper Plugin 'tpope/vim-fugitive' " Git wrapper
Plugin 'tmsvg/pear-tree' " parathesis matching Plugin 'tmsvg/pear-tree' " parathesis matching
Plugin 'vimwiki/vimwiki' Plugin 'vimwiki/vimwiki'
Plugin 'dhruvasagar/vim-table-mode' " manage markdown tables
" Colors " Colors
Plugin 'arcticicestudio/nord-vim' Plugin 'arcticicestudio/nord-vim'
@@ -75,7 +76,6 @@ set smartindent
" File specific indents " File specific indents
autocmd FileType rust setlocal tabstop=4 softtabstop=4 expandtab autocmd FileType rust setlocal tabstop=4 softtabstop=4 expandtab
autocmd FileType perl setlocal tabstop=8 softtabstop=8 noexpandtab autocmd FileType perl setlocal tabstop=8 softtabstop=8 noexpandtab
autocmd FileType conf setlocal tabstop=8 softtabstop=8 noexpandtab
autocmd FileType yaml setlocal tabstop=2 softtabstop=2 expandtab autocmd FileType yaml setlocal tabstop=2 softtabstop=2 expandtab
set list set list
@@ -107,6 +107,7 @@ let g:netrw_liststyle = 3 " Tree-like structure
let g:netrw_banner = 0 " Remove useless banner at the top of netrw let g:netrw_banner = 0 " Remove useless banner at the top of netrw
" ------------------------------------- Macros & Mappings ---------------------- " ------------------------------------- Macros & Mappings ----------------------
let mapleader = "\<Space>"
cmap Wq wq cmap Wq wq
cmap Q q cmap Q q
cmap W w cmap W w