update bootstrap code to work smoothly
This commit is contained in:
parent
b2df93a1f6
commit
7dfccffab5
@ -7,15 +7,18 @@
|
|||||||
(use :Olical/aniseed) ; fennel to lua
|
(use :Olical/aniseed) ; fennel to lua
|
||||||
|
|
||||||
; themes
|
; themes
|
||||||
(use :projekt0n/github-nvim-theme)
|
; (use :projekt0n/github-nvim-theme)
|
||||||
(use :FrenzyExists/aquarium-vim)
|
(use {
|
||||||
|
1 :FrenzyExists/aquarium-vim
|
||||||
|
:run ":silent! colorscheme aquarium"
|
||||||
|
})
|
||||||
|
|
||||||
; ui
|
; ui
|
||||||
(use :kyazdani42/nvim-web-devicons)
|
(use :kyazdani42/nvim-web-devicons)
|
||||||
(use :nvim-lualine/lualine.nvim)
|
(use :nvim-lualine/lualine.nvim)
|
||||||
(use :lukas-reineke/indent-blankline.nvim)
|
(use :lukas-reineke/indent-blankline.nvim)
|
||||||
(use :ntpeters/vim-better-whitespace)
|
(use :ntpeters/vim-better-whitespace)
|
||||||
(use :valloric/matchtagalways)
|
; (use :valloric/matchtagalways)
|
||||||
|
|
||||||
; util
|
; util
|
||||||
(use :cocopon/vaffle.vim)
|
(use :cocopon/vaffle.vim)
|
||||||
@ -26,8 +29,15 @@
|
|||||||
(use :nelstrom/vim-visual-star-search)
|
(use :nelstrom/vim-visual-star-search)
|
||||||
(use :timakro/vim-yadi)
|
(use :timakro/vim-yadi)
|
||||||
|
|
||||||
(use {1 :nvim-treesitter/nvim-treesitter :run ":TSUpdate"})
|
(use {
|
||||||
(use :nvim-treesitter/nvim-treesitter-textobjects)
|
1 :nvim-treesitter/nvim-treesitter
|
||||||
|
:run (fn [] (let [ts (require :nvim-treesitter.install)]
|
||||||
|
(ts.update {:with_sync true})))
|
||||||
|
})
|
||||||
|
(use {
|
||||||
|
1 :nvim-treesitter/nvim-treesitter-textobjects
|
||||||
|
:after "nvim-treesitter"
|
||||||
|
})
|
||||||
(use :neovim/nvim-lspconfig)
|
(use :neovim/nvim-lspconfig)
|
||||||
|
|
||||||
; completion
|
; completion
|
||||||
|
@ -5,9 +5,7 @@
|
|||||||
(nvim.ex.autocmd "BufRead * DetectIndent")
|
(nvim.ex.autocmd "BufRead * DetectIndent")
|
||||||
|
|
||||||
;; theme
|
;; theme
|
||||||
; (global github-theme (require :github-theme))
|
(nvim.command "silent! colorscheme aquarium")
|
||||||
; (github-theme.setup {:theme_style :dark})
|
|
||||||
(nvim.command "colorscheme aquarium")
|
|
||||||
|
|
||||||
;; buffergator
|
;; buffergator
|
||||||
(set nvim.g.buffergator_display_regime "parentdir")
|
(set nvim.g.buffergator_display_regime "parentdir")
|
||||||
|
16
init.lua
16
init.lua
@ -3,7 +3,8 @@
|
|||||||
local fn = vim.fn
|
local fn = vim.fn
|
||||||
local execute = vim.api.nvim_command
|
local execute = vim.api.nvim_command
|
||||||
|
|
||||||
if fn.empty(fn.glob(fn.stdpath('data')..'/site/pack/packer/start/')) > 0 then
|
bootstrap = fn.empty(fn.glob(fn.stdpath('data')..'/site/pack/packer/start/')) > 0
|
||||||
|
if bootstrap then
|
||||||
local github = 'https://github.com/'
|
local github = 'https://github.com/'
|
||||||
local packer_git = github..'wbthomason/packer.nvim'
|
local packer_git = github..'wbthomason/packer.nvim'
|
||||||
local aniseed_git = github..'Olical/aniseed'
|
local aniseed_git = github..'Olical/aniseed'
|
||||||
@ -12,6 +13,13 @@ if fn.empty(fn.glob(fn.stdpath('data')..'/site/pack/packer/start/')) > 0 then
|
|||||||
local packer_path = install_path..'packer.nvim'
|
local packer_path = install_path..'packer.nvim'
|
||||||
local aniseed_path = install_path..'aniseed'
|
local aniseed_path = install_path..'aniseed'
|
||||||
|
|
||||||
|
vim.api.nvim_create_autocmd("User", {
|
||||||
|
pattern = "PackerComplete",
|
||||||
|
callback = function()
|
||||||
|
vim.cmd(":qa!")
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
fn.system({'git', 'clone', packer_git, packer_path})
|
fn.system({'git', 'clone', packer_git, packer_path})
|
||||||
fn.system({'git', 'clone', aniseed_git, aniseed_path})
|
fn.system({'git', 'clone', aniseed_git, aniseed_path})
|
||||||
|
|
||||||
@ -21,12 +29,6 @@ if fn.empty(fn.glob(fn.stdpath('data')..'/site/pack/packer/start/')) > 0 then
|
|||||||
-- load only plugins to install plugins
|
-- load only plugins to install plugins
|
||||||
require('aniseed.env').init({compile = true, module = 'plugins'})
|
require('aniseed.env').init({compile = true, module = 'plugins'})
|
||||||
execute 'PackerUpdate'
|
execute 'PackerUpdate'
|
||||||
|
|
||||||
print('Plugins are installed, but config is not fully loaded, please open Neovim again')
|
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
-- call through aniseed
|
|
||||||
vim.g['aniseed#env'] = true
|
vim.g['aniseed#env'] = true
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user