Skip to content

Instantly share code, notes, and snippets.

View mythusiva's full-sized avatar

Mythu Siva mythusiva

View GitHub Profile
@font-face {
font-family: "Hack Sans Mono Nerd";
src: url("https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/Hack/Regular/HackNerdFont-Regular.ttf");
font-weight: normal;
font-style: normal;
}
@mythusiva
mythusiva / .vimrc
Last active May 9, 2024 01:31
My vimrc file
" Plugins will be downloaded under the specified directory.
call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')
" Declare the list of plugins.
Plug 'tpope/vim-sensible'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'vim-scripts/vim-gitgutter'
Plug 'prabirshrestha/vim-lsp'
Plug 'mattn/vim-lsp-settings'