From 893679fe76e96c6a81efed52956a911992e6ef17 Mon Sep 17 00:00:00 2001 From: self Date: Mon, 19 Sep 2022 11:36:34 +0100 Subject: Tabs not spaces, and Telescope --- init.vim | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/init.vim b/init.vim index ade682a..7f7aa66 100755 --- a/init.vim +++ b/init.vim @@ -4,10 +4,10 @@ set ignorecase " case insensitive set mouse=v " middle-click paste with set hlsearch " highlight search set incsearch " incremental search -set tabstop=4 " number of columns occupied by a tab -set softtabstop=4 " see multiple spaces as tabstops so does the right thing -set expandtab " converts tabs to white space -set shiftwidth=4 " width for autoindents +" set tabstop=4 " number of columns occupied by a tab +" set softtabstop=4 " see multiple spaces as tabstops so does the right thing +" set expandtab " converts tabs to white space +" set shiftwidth=4 " width for autoindents set autoindent " indent a new line the same amount as the line just typed and this is cool set number " add line numbers set wildmode=longest,list " get bash-like tab completions @@ -22,12 +22,23 @@ set ttyfast " Speed up scrolling in Vim set cursorline set termguicolors " Themes don't seem to work without this. " set backupdir=~/.cache/vim " Directory to store backup files. +let mapleader=',' " Some aliases to make my life easier command W w command Wq wq command Q q command WQ wq + +" Telescope shortcuts +noremap cs :Telescope colorscheme +noremap gr :Telescope grep_string +noremap lg :Telescope live_grep + +noremap gc :Telescope git_commits +noremap gs :Telescope git_status +noremap fd :Telescope fd + " vim-plug -> call plug#begin('~/.config/nvim/plugged') -- cgit v1.2.1