" Configure syntax on set number set ttyfast set cc=200 set shiftwidth=4 set noswapfile set nobackup set clipboard=unnamedplus set encoding=utf-8 set tabstop=4 set softtabstop=4 set smartindent set autoindent " Plugins call plug#begin() Plug 'jiangmiao/auto-pairs' Plug 'Lokaltog/vim-monotone' Plug 'vim-airline/vim-airline' call plug#end() " Keybinds inoremap lkj map map h map l " Terminal Colors colorscheme monotone " Compile And Run autocmd filetype c nnoremap :w !tcc % -Wall -O2 -o %:r && ./%:r autocmd filetype cpp nnoremap :w !g++ % -o %:r && ./%:r