Skip to content

Instantly share code, notes, and snippets.

@Hixon10
Created July 18, 2023 23:09
Show Gist options
  • Save Hixon10/04ff83c7a6bac4e34cb4c103c92e86b8 to your computer and use it in GitHub Desktop.
Save Hixon10/04ff83c7a6bac4e34cb4c103c92e86b8 to your computer and use it in GitHub Desktop.
current vim config
set number
set relativenumber
set scrolloff=10
let &t_SI = "\e[6 q"
let &t_EI = "\e[2 q"
set tabstop=4 softtabstop=4
set shiftwidth=4
set expandtab
set smartindent
nnoremap <C-p> :Files<Cr>
nnoremap <C-f> :Rg<Cr>
call plug#begin()
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
call plug#end()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment