Begin to examine neovim config
This commit is contained in:
9
.gitmodules
vendored
9
.gitmodules
vendored
@@ -40,3 +40,12 @@
|
|||||||
[submodule "vim/.vim/bundle/ale"]
|
[submodule "vim/.vim/bundle/ale"]
|
||||||
path = vim/.vim/bundle/ale
|
path = vim/.vim/bundle/ale
|
||||||
url = https://github.com/dense-analysis/ale
|
url = https://github.com/dense-analysis/ale
|
||||||
|
[submodule "vim/.vim/nvim-bundle/plenary"]
|
||||||
|
path = vim/.vim/nvim-bundle/plenary
|
||||||
|
url = https://github.com/nvim-lua/plenary.nvim.git
|
||||||
|
[submodule "vim/.vim/nvim-bundle/telescope"]
|
||||||
|
path = vim/.vim/nvim-bundle/telescope
|
||||||
|
url = https://github.com/nvim-telescope/telescope.nvim.git
|
||||||
|
[submodule "vim/.vim/nvim-bundle/nvim-lspconfig"]
|
||||||
|
path = vim/.vim/nvim-bundle/nvim-lspconfig
|
||||||
|
url = https://github.com/neovim/nvim-lspconfig.git
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
#{- ~/.aliases -}#
|
#{- ~/.aliases -}#
|
||||||
|
|
||||||
|
alias vim="nvim "
|
||||||
|
|
||||||
#{- FILE OPERATIONS -}#
|
#{- FILE OPERATIONS -}#
|
||||||
|
|
||||||
# Allow alias expansion for commands executed with sudo
|
# Allow alias expansion for commands executed with sudo
|
||||||
|
|||||||
0
vim/.config/nvim/init.lua
Normal file
0
vim/.config/nvim/init.lua
Normal file
9
vim/.config/nvim/init.vim
Normal file
9
vim/.config/nvim/init.vim
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
set runtimepath^=~/.vim runtimepath+=~/.vim/after
|
||||||
|
let &packpath = &runtimepath
|
||||||
|
source ~/.vimrc
|
||||||
|
|
||||||
|
" Beginner keybinds for telescope
|
||||||
|
nnoremap <leader>ff <cmd>Telescope find_files<cr>
|
||||||
|
nnoremap <leader>fg <cmd>Telescope live_grep<cr>
|
||||||
|
nnoremap <leader>fb <cmd>Telescope buffers<cr>
|
||||||
|
nnoremap <leader>fh <cmd>Telescope help_tags<cr>
|
||||||
Submodule vim/.vim/bundle/commentary updated: 627308e306...f67e3e67ea
Submodule vim/.vim/bundle/eunuch updated: 7a48f9ff0e...084946fb1c
Submodule vim/.vim/bundle/filetype-nix updated: 63b47b39c8...048c71f1ed
Submodule vim/.vim/bundle/fugitive updated: 2064312ad7...f116dcc8e2
Submodule vim/.vim/bundle/pathogen updated: e0a3efbda5...ac4dd9494f
Submodule vim/.vim/bundle/sleuth updated: 228e51160c...1cc4557420
Submodule vim/.vim/bundle/supertab updated: 40fe711e08...f0093ae12a
Submodule vim/.vim/bundle/tagbar updated: 56399f446c...12edcb5944
Submodule vim/.vim/bundle/vim-terraform updated: f0b17ac9f1...3d1cfc8e18
Submodule vim/.vim/bundle/vinegar updated: fcce70f140...bb1bcddf43
@@ -53,7 +53,7 @@ exe "let s:bg_white = ' ctermbg=".s:white"'"
|
|||||||
exe "let s:fg_none = ' ctermfg=NONE'"
|
exe "let s:fg_none = ' ctermfg=NONE'"
|
||||||
exe "let s:fg_default = ' ctermfg=".s:foreground"'"
|
exe "let s:fg_default = ' ctermfg=".s:foreground"'"
|
||||||
exe "let s:fg_black = ' ctermfg=".s:black"'"
|
exe "let s:fg_black = ' ctermfg=".s:black"'"
|
||||||
exe "let s:fg_red = ' ctermfg=".s:red"'"
|
exe "let s:fg_red = ' ctermfg=".s:bright_red"'"
|
||||||
exe "let s:fg_green = ' ctermfg=".s:green"'"
|
exe "let s:fg_green = ' ctermfg=".s:green"'"
|
||||||
exe "let s:fg_yellow = ' ctermfg=".s:yellow"'"
|
exe "let s:fg_yellow = ' ctermfg=".s:yellow"'"
|
||||||
exe "let s:fg_blue = ' ctermfg=".s:blue"'"
|
exe "let s:fg_blue = ' ctermfg=".s:blue"'"
|
||||||
@@ -135,20 +135,20 @@ exe "hi! Todo" .s:fmt_bold .s:fg_magenta.s:bg_none
|
|||||||
" *Todo anything that needs extra attention; mostly the
|
" *Todo anything that needs extra attention; mostly the
|
||||||
" keywords TODO FIXME and XXX
|
" keywords TODO FIXME and XXX
|
||||||
|
|
||||||
exe "hi! StatusLine" .s:fg_dark_grey .s:bg_bright_red
|
exe "hi! StatusLine" .s:fg_blue .s:bg_none
|
||||||
exe "hi! StatusLineNC" .s:fg_dark_grey .s:bg_bright_magenta
|
exe "hi! StatusLineNC" .s:fg_blue .s:bg_none
|
||||||
|
|
||||||
exe "hi! LineNr" .s:fg_dark_grey .s:bg_none
|
exe "hi! LineNr" .s:fg_dark_grey .s:bg_none
|
||||||
exe "hi! CursorLineNr" .s:fg_bright_magenta .s:bg_none
|
exe "hi! CursorLineNr" .s:fg_bright_magenta .s:bg_none
|
||||||
|
|
||||||
exe "hi! TabLine" .s:fmt_none .s:fg_bright_red .s:bg_dark_grey
|
exe "hi! TabLine" .s:fmt_none .s:fg_black .s:bg_blue
|
||||||
exe "hi! TabLineSel" .s:fmt_none .s:fg_bright_magenta .s:bg_dark_grey
|
exe "hi! TabLineSel" .s:fmt_bold .s:fg_black .s:bg_cyan
|
||||||
exe "hi! TabLineFill" .s:fmt_none .s:fg_none .s:bg_dark_grey
|
exe "hi! TabLineFill" .s:fmt_none .s:fg_none .s:bg_bright_blue
|
||||||
|
|
||||||
exe "hi! CursorLine" .s:fmt_none .s:bg_dark_grey
|
exe "hi! CursorLine" .s:fmt_none .s:bg_blue
|
||||||
exe "hi! CursorColumn" .s:fmt_none .s:bg_dark_grey
|
exe "hi! CursorColumn" .s:fmt_none .s:bg_blue
|
||||||
|
|
||||||
exe "hi! VertSplit" .s:fg_dark_grey .s:bg_dark_grey
|
exe "hi! VertSplit" .s:fg_blue .s:bg_blue
|
||||||
|
|
||||||
"if &background == "light"
|
"if &background == "light"
|
||||||
" highlight Normal ctermfg=0 ctermbg=15
|
" highlight Normal ctermfg=0 ctermbg=15
|
||||||
|
|||||||
1
vim/.vim/nvim-bundle/nvim-lspconfig
Submodule
1
vim/.vim/nvim-bundle/nvim-lspconfig
Submodule
Submodule vim/.vim/nvim-bundle/nvim-lspconfig added at b901432100
1
vim/.vim/nvim-bundle/plenary
Submodule
1
vim/.vim/nvim-bundle/plenary
Submodule
Submodule vim/.vim/nvim-bundle/plenary added at 4f71c0c4a1
1
vim/.vim/nvim-bundle/telescope
Submodule
1
vim/.vim/nvim-bundle/telescope
Submodule
Submodule vim/.vim/nvim-bundle/telescope added at e54fbf4ab2
Reference in New Issue
Block a user