Skip to content

Instantly share code, notes, and snippets.

@EwhaWhiteMoon
Last active March 16, 2024 07:52
Show Gist options
  • Save EwhaWhiteMoon/abbebd02274b05da24184ff7bdbce228 to your computer and use it in GitHub Desktop.
Save EwhaWhiteMoon/abbebd02274b05da24184ff7bdbce228 to your computer and use it in GitHub Desktop.
" Plugins will be downloaded under the specified directory.
call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')
" Declare the list of plugins.
Plug 'NLKNguyen/papercolor-theme'
" Plug 'tribela/vim-transparent'
Plug 'catppuccin/nvim', { 'as': 'catppuccin' }
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'nvim-treesitter/nvim-treesitter-context'
Plug 'preservim/nerdtree'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'ryanoasis/vim-devicons'
Plug 'tpope/vim-surround'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'ervandew/supertab'
" Plug 'ehamberg/vim-cute-python'
" Plug 'LawrencePeng/vim-cute-cpp'
" List ends here. Plugins become visible to Vim after this call.
call plug#end()
colorscheme catppuccin-latte
let g:airline_theme = 'catppuccin'
set number numberwidth=3
set title
set ruler
set autoindent
set cursorline
set showmatch
set list listchars=tab:»\ ,trail:·
set tabstop=4 softtabstop=4 shiftwidth=4 expandtab smarttab
set ignorecase
set smartcase
let g:airline_powerline_fonts = 1 "airline
let mapleader=","
nmap <leader>n :NERDTreeToggle<CR>
lua require'nvim-treesitter.configs'.setup{highlight={enable=true}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment