Skip to content

Instantly share code, notes, and snippets.

@aschmelyun
Created May 5, 2026 07:04
Show Gist options
  • Select an option

  • Save aschmelyun/4935d83e47ba5f5e0175fef037756c2e to your computer and use it in GitHub Desktop.

Select an option

Save aschmelyun/4935d83e47ba5f5e0175fef037756c2e to your computer and use it in GitHub Desktop.
nvim config
if &compatible
set nocompatible " Be iMproved
endif
syntax on
set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
set number
set noerrorbells
set novisualbell
set termguicolors
" Plugins will be downloaded under the specified directory.
call plug#begin('~/.local/share/nvim/site/pack')
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'itchyny/lightline.vim'
Plug 'joshdick/onedark.vim'
Plug 'drewtempelmeyer/palenight.vim'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'mkropat/vim-ezguifont'
call plug#end()
if (has("termguicolors"))
set termguicolors
endif
let g:ezguifont = 'JetBrains Mono:h21'
let g:lightline = {
\ 'colorscheme': 'palenight',
\ }
let g:palenight_terminal_italics=1
colorscheme palenight
Plug 'neovim/nvim-lspconfig'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment