Created
May 5, 2026 07:04
-
-
Save aschmelyun/4935d83e47ba5f5e0175fef037756c2e to your computer and use it in GitHub Desktop.
nvim config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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