Skip to content

Instantly share code, notes, and snippets.

@ravshansbox
Last active February 20, 2025 02:19
Show Gist options
  • Save ravshansbox/ae0778aa53a093889f00bb6fb3889e81 to your computer and use it in GitHub Desktop.
Save ravshansbox/ae0778aa53a093889f00bb6fb3889e81 to your computer and use it in GitHub Desktop.
set cursorline
set expandtab
set hlsearch
set incsearch
set laststatus=2
set noshowmode
set number
set shiftwidth=2
set tabstop=2
set viminfo=
set termguicolors
set ttimeout ttimeoutlen=100
call plug#begin()
Plug 'catppuccin/vim', { 'as': 'catppuccin' }
Plug 'itchyny/lightline.vim'
call plug#end()
colorscheme catppuccin_macchiato
let g:lightline = { 'colorscheme': 'catppuccin_macchiato' }
let &t_SI = "\<esc>[5 q"
let &t_SR = "\<esc>[3 q"
let &t_EI = "\<esc>[0 q"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment