summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorself <george@gabbott.dev>2022-09-19 11:36:34 +0100
committerself <george@gabbott.dev>2022-09-19 11:36:34 +0100
commit893679fe76e96c6a81efed52956a911992e6ef17 (patch)
tree3179100f4d7bcdc46c61b3c293145d8759d92f8c
parent00723ab4bc8097785ace3e9f07beaea43333d3a0 (diff)
Tabs not spaces, and Telescope
-rwxr-xr-xinit.vim19
1 files 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 <BS> 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 <BS> 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 <leader>cs :Telescope colorscheme<CR>
+noremap <leader>gr :Telescope grep_string<CR>
+noremap <leader>lg :Telescope live_grep<CR>
+
+noremap <leader>gc :Telescope git_commits<CR>
+noremap <leader>gs :Telescope git_status<CR>
+noremap <leader>fd :Telescope fd<CR>
+
" vim-plug ->
call plug#begin('~/.config/nvim/plugged')