From 3066195b9b9cc6bc10edb0d7bd0188e26fce8e0e Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Thu, 14 May 2015 13:49:59 +0200 Subject: vim: Don't yank to clipboard by default anymore --- vim/vimrc | 3 --- 1 file changed, 3 deletions(-) (limited to 'vim') diff --git a/vim/vimrc b/vim/vimrc index 38296d4..ec1a39f 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -78,9 +78,6 @@ set noexpandtab " Automatically hide buffers instead of requiring bangcommands set hidden -" Yank to clipboard/selection by default -set clipboard=unnamed,unnamedplus - " Easier window moving map h map j -- cgit v1.2.3-54-g00ecf From c368a0bebb20fb19fa7435c14cf6f2d7a89768fd Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Thu, 16 Jul 2015 22:12:14 +0200 Subject: vim: Add custom python settings --- vim/after/ftplugin/python.vim | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 vim/after/ftplugin/python.vim (limited to 'vim') diff --git a/vim/after/ftplugin/python.vim b/vim/after/ftplugin/python.vim new file mode 100644 index 0000000..2a3d549 --- /dev/null +++ b/vim/after/ftplugin/python.vim @@ -0,0 +1,4 @@ +setlocal shiftwidth=4 +setlocal tabstop=4 +setlocal softtabstop=4 +setlocal expandtab -- cgit v1.2.3-54-g00ecf