From fd3564574da5c1a46919a129b92a20bc16344bcc Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Mon, 12 Feb 2018 19:45:31 +0000 Subject: [PATCH] STOP OPENING TAR FILES --- .gitignore | 1 + .vimrc | 15 ++++++++++++++- bundle/vundle | 1 - 3 files changed, 15 insertions(+), 2 deletions(-) delete mode 160000 bundle/vundle diff --git a/.gitignore b/.gitignore index 3b7e6a2..83105fb 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ bundle/* colors/* tags init.vim +bundle diff --git a/.vimrc b/.vimrc index 3909e79..54e57cf 100644 --- a/.vimrc +++ b/.vimrc @@ -5,12 +5,17 @@ set encoding=utf8 set rtp+=~/.vim/bundle/vundle/ call vundle#rc() +"Who the fuck wants to load a tar file in vim??? +let g:loaded_tarPlugin = 1 "Auto reload .vimrc autocmd! bufwritepost .vimrc source % autocmd FileType nerdtree setlocal nolist +let g:python_host_prog = '/home/fergalm/.virtualenvs/nvim2/bin/python' +let g:python3_host_prog = '/home/fergalm/.virtualenvs/nvim3/bin/python' + "De-insaneify copy & paste set pastetoggle= set clipboard=unnamed @@ -18,6 +23,10 @@ set clipboard=unnamed set nobackup set nowritebackup set noswapfile +set mouse=a + +" stop hiding fucking quotes +set conceallevel=0 let mapleader="," " unhighlight search on pressing return @@ -95,7 +104,8 @@ Plugin 'ryanoasis/vim-devicons' " step 2: font configuration " " These are the basic settings to get the font to work (required): -set guifont=Droid\ Sans\ Mono\ for\ Powerline\ Nerd\ Font\ Complete\ 12 +" set guifont=Droid\ Sans\ Mono\ for\ Powerline\ Nerd\ Font\ Complete\ 12 +" set guifont=FuraMono-Medium\ Powerline\ 12 set encoding=utf-8 " " required if using https://github.com/bling/vim-airline let g:airline_powerline_fonts=1 @@ -117,6 +127,9 @@ let g:syntastic_auto_loc_list = 1 let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 0 +" pymode config +let g:pymode_lint_config = '$HOME/.pylint.rc' + " Typescript configs (this will probably slow shit to a crawl) let g:typescript_compiler_binary = 'tsc' let g:typescript_compiler_options = '' diff --git a/bundle/vundle b/bundle/vundle deleted file mode 160000 index 6497e37..0000000 --- a/bundle/vundle +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 6497e37694cd2134ccc3e2526818447ee8f20f92