" 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' call plug#end() " Keybinds inoremap lkj map map h map l " Terminal Colors set t_Co=256 " Enable 256 colors set termguicolors " Enable GUI colors for the terminal to get truecolor " Compile And Run autocmd filetype c nnoremap :w !tcc % -Wall -O2 -o %:r && ./%:r autocmd filetype cpp nnoremap :w !g++ % -o %:r && ./%:r