Compare commits
No commits in common. "af334c58d2ef5dfe2529d918221f11ca6883659c" and "c7c70423b116dc3e41ad3fc31062692df1f90d73" have entirely different histories.
af334c58d2
...
c7c70423b1
|
@ -10,8 +10,9 @@ Plug 'https://github.com/marko-cerovac/material.nvim', { 'branch': 'main' }
|
||||||
let g:material_style = 'lighter'
|
let g:material_style = 'lighter'
|
||||||
|
|
||||||
" colorscheme in develpment paper-tonic
|
" colorscheme in develpment paper-tonic
|
||||||
Plug '~/Projects/nvim-paper-tonic'
|
Plug '~/nvim-paper-tonic'
|
||||||
|
|
||||||
|
" evaluating
|
||||||
" #nvim-treesitter {{{
|
" #nvim-treesitter {{{
|
||||||
" https://github.com/nvim-treesitter/nvim-treesitter
|
" https://github.com/nvim-treesitter/nvim-treesitter
|
||||||
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " update the parsers on update
|
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " update the parsers on update
|
||||||
|
@ -238,6 +239,9 @@ let g:mta_filetypes = {
|
||||||
Plug 'tpope/vim-rsi'
|
Plug 'tpope/vim-rsi'
|
||||||
|
|
||||||
"}}}
|
"}}}
|
||||||
|
" #wakatime{{{
|
||||||
|
" https://wakatime.com/vim
|
||||||
|
Plug 'wakatime/vim-wakatime'
|
||||||
|
|
||||||
"}}}
|
"}}}
|
||||||
" #vim-repeat{{{
|
" #vim-repeat{{{
|
||||||
|
|
8
init.vim
8
init.vim
|
@ -2,6 +2,8 @@
|
||||||
" problems if I ever use ruby virtual environments or RVM or similar.
|
" problems if I ever use ruby virtual environments or RVM or similar.
|
||||||
let g:ruby_host_prog = '~/.gem/ruby/2.7.0/bin/neovim-ruby-host'
|
let g:ruby_host_prog = '~/.gem/ruby/2.7.0/bin/neovim-ruby-host'
|
||||||
|
|
||||||
|
set rtp+='~/nvim-paper-tonic'
|
||||||
|
|
||||||
source ~/.config/nvim/init.plugins.vim
|
source ~/.config/nvim/init.plugins.vim
|
||||||
source ~/.config/nvim/init.tabline.vim
|
source ~/.config/nvim/init.tabline.vim
|
||||||
source ~/.config/nvim/init.auto-window.vim
|
source ~/.config/nvim/init.auto-window.vim
|
||||||
|
@ -229,8 +231,8 @@ set tags=./.tags,.tags,./tags-external,.tags-external;/home/*
|
||||||
" persisitent undo file
|
" persisitent undo file
|
||||||
set undofile
|
set undofile
|
||||||
set undodir=~/.config/nvim/undodir
|
set undodir=~/.config/nvim/undodir
|
||||||
set backupdir=~/.nvim/tmpdir
|
set backupdir=~/nvim/tmpdir
|
||||||
set directory=~/.nvim/tmpdir
|
set directory=~/nvim/tmpdir
|
||||||
|
|
||||||
set viewoptions-=options
|
set viewoptions-=options
|
||||||
|
|
||||||
|
@ -330,7 +332,7 @@ set conceallevel=0
|
||||||
" #mappings {{{
|
" #mappings {{{
|
||||||
let g:mapleader = ' '
|
let g:mapleader = ' '
|
||||||
" miscallaneous {{{
|
" miscallaneous {{{
|
||||||
nnoremap <cr>l :colorscheme paper-tonic<cr>
|
nnoremap <cr>l :colorscheme paper-custom<cr>
|
||||||
nnoremap <cr>d :colorscheme monotonous-dark<cr>
|
nnoremap <cr>d :colorscheme monotonous-dark<cr>
|
||||||
nnoremap 0 ^
|
nnoremap 0 ^
|
||||||
nnoremap <silent><space>cs :let @/=""<cr>
|
nnoremap <silent><space>cs :let @/=""<cr>
|
||||||
|
|
|
@ -201,6 +201,3 @@ Etsy
|
||||||
Strapi
|
Strapi
|
||||||
whitepapers
|
whitepapers
|
||||||
LXD
|
LXD
|
||||||
campervans
|
|
||||||
VW
|
|
||||||
gltf
|
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue