centered headings
This commit is contained in:
parent
61243baabb
commit
2a45c826a3
28
init.vim
28
init.vim
|
@ -1,10 +1,10 @@
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
"====================== NVIM Main Configuration File ===========================
|
"======================== NVIM Main Configuration File =========================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
"============================== General Setup ==================================
|
"================================ General Setup ================================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
" This section contains seme stuff I just want in general.
|
" This section contains seme stuff I just want in general.
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ set number relativenumber
|
||||||
" I user :terminal quite often.
|
" I user :terminal quite often.
|
||||||
nnoremap <leader>t :sp<Cr>:terminal<Cr>a
|
nnoremap <leader>t :sp<Cr>:terminal<Cr>a
|
||||||
|
|
||||||
"====================== Code Style Related Settings ============================
|
"========================= Code Style Related Settings =========================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
|
|
||||||
" This is basically Python's recommendation.
|
" This is basically Python's recommendation.
|
||||||
|
@ -64,7 +64,7 @@ set shiftwidth=4
|
||||||
set expandtab
|
set expandtab
|
||||||
|
|
||||||
|
|
||||||
"===================== Filetype And Related Settings ===========================
|
"======================== Filetype And Related Settings ========================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
" This section contains stuff that is related to file types.
|
" This section contains stuff that is related to file types.
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ set modelines=10
|
||||||
|
|
||||||
|
|
||||||
"_______________________________________________________________________________
|
"_______________________________________________________________________________
|
||||||
"========================= Installing all Plugins ==============================
|
"=========================== Installing all Plugins ============================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
" For reasons this has to been done in a single step.
|
" For reasons this has to been done in a single step.
|
||||||
|
|
||||||
|
@ -123,7 +123,7 @@ Plug 'kyazdani42/nvim-tree.lua'
|
||||||
Plug 'airblade/vim-gitgutter'
|
Plug 'airblade/vim-gitgutter'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
"===================== Language Server Configuration ===========================
|
"======================== Language Server Configuration ========================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
" This section sets up the language server for the languages I use.
|
" This section sets up the language server for the languages I use.
|
||||||
|
|
||||||
|
@ -220,7 +220,7 @@ inoremap <expr> { AutoInsertBracket()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
"========================== A Nice Color Scheme ================================
|
"============================ A Nice Color Scheme ==============================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
|
|
||||||
"set background=dark
|
"set background=dark
|
||||||
|
@ -234,13 +234,13 @@ set termguicolors
|
||||||
"let g:sonokai_disable_italic_comment = 0
|
"let g:sonokai_disable_italic_comment = 0
|
||||||
colorscheme molokai
|
colorscheme molokai
|
||||||
|
|
||||||
"=================== Settings Related to Highlighting ==========================
|
"====================== Settings Related to Highlighting =======================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
|
|
||||||
let g:vimsyn_embed = 'l'
|
let g:vimsyn_embed = 'l'
|
||||||
|
|
||||||
|
|
||||||
"==================== Settings Related to Treesitter ===========================
|
"======================= Settings Related to Treesitter ========================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
|
|
||||||
" Install the language parsers.
|
" Install the language parsers.
|
||||||
|
@ -251,7 +251,7 @@ let g:vimsyn_embed = 'l'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
"========================= Settings Related to SLIME ===========================
|
"========================== Settings Related to SLIME ==========================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
|
|
||||||
let g:slime_target = 'neovim'
|
let g:slime_target = 'neovim'
|
||||||
|
@ -259,12 +259,12 @@ let g:slime_no_mappings = 1
|
||||||
xmap <leader>r <Plug>SlimeRegionSend
|
xmap <leader>r <Plug>SlimeRegionSend
|
||||||
nmap <leader>r <Plug>SlimeParagraphSend
|
nmap <leader>r <Plug>SlimeParagraphSend
|
||||||
|
|
||||||
"======================== Settings Related to IPYNB ============================
|
"========================== Settings Related to IPYNB ==========================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
" You have to install notedown pip3 install --user notedown.
|
" You have to install notedown pip3 install --user notedown.
|
||||||
|
|
||||||
|
|
||||||
"===================== Settings Related to Firenvim ============================
|
"======================== Settings Related to Firenvim =========================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
|
|
||||||
if exists('g:started_by_firenvim')
|
if exists('g:started_by_firenvim')
|
||||||
|
@ -275,7 +275,7 @@ if exists('g:started_by_firenvim')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
"========================== Statusline Settings ================================
|
"============================= Statusline Settings =============================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
|
|
||||||
set statusline=
|
set statusline=
|
||||||
|
@ -285,7 +285,7 @@ set statusline+=%=%l,%v
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
|
|
||||||
|
|
||||||
"===================== Settings Related to GIT GUD =============================
|
"========================= Settings Related to GIT GUD =========================
|
||||||
"===============================================================================
|
"===============================================================================
|
||||||
|
|
||||||
set updatetime=200
|
set updatetime=200
|
||||||
|
|
Loading…
Reference in New Issue
Block a user