diff --git a/bin/windows/create_completion_files.ps1 b/bin/windows/create_completion_files.ps1 index 02ed1c3..27dc93e 100644 --- a/bin/windows/create_completion_files.ps1 +++ b/bin/windows/create_completion_files.ps1 @@ -11,6 +11,7 @@ if (!(Test-Path $script_location)) { Get-ChildItem $script_location | Remove-Item rclone completion powershell > (Join-Path $script_location "rclone_completion.ps1") rustup completions powershell > (Join-Path $script_location "rustup_completion.ps1") +elan completions powershell > (Join-Path $script_location "elan_completion.ps1") wezterm shell-completion --shell power-shell > (Join-Path $script_location "wezterm_completion.ps1") chezmoi completion powershell > (Join-Path $script_location "chezmoi_completion.ps1") pip completion --powershell > (Join-Path $script_location "pip_completion.ps1") diff --git a/dotfiles/neovim/init.lua b/dotfiles/neovim/init.lua index 6abc88b..a553185 100644 --- a/dotfiles/neovim/init.lua +++ b/dotfiles/neovim/init.lua @@ -52,9 +52,9 @@ require('lazy').setup({ }, { -- 'kdheepak/JET.nvim', - 'qwjyh/JET.nvim', + -- 'qwjyh/JET.nvim', dir = '~/work/julia/JET.nvim', - dev = false, -- set true to use dir + -- dev = false, -- set true to use dir lazy = true, dependencies = { 'jose-elias-alvarez/null-ls.nvim', @@ -227,9 +227,9 @@ iron.setup { fish = { command = { 'fish' }, }, - julia = { - command = { 'julia', }, - }, + -- julia = { + -- command = { 'julia', }, + -- }, shell = { command = { 'sh', }, }, @@ -462,7 +462,7 @@ lspconfig.lua_ls.setup { } -- Julia -- use sysimage only if it exists -local julials_so = os.getenv("HOME") .. "/.julia/environments/nvim-lspconfig/sys-ls.so" +local julials_so = vim.env.HOME .. "/.julia/environments/nvim-lspconfig/sys-ls.so" local julials_so_option = { "", "" } local julials_so_file = io.open(julials_so) if julials_so_file then -- if sysimage doesn't exist, julials_so_file == nil @@ -479,7 +479,7 @@ lspconfig.julials.setup { julials_so_option[1], julials_so_option[2], -- use below 2 lines to collect script to be included in sysimage '--trace-compile', - os.getenv("HOME") .. "/.julia/environments/nvim-lspconfig/tracecompile.jl", + vim.env.HOME .. "/.julia/environments/nvim-lspconfig/tracecompile.jl", "-e", [[ # Load LanguageServer.jl: attempt to load from ~/.julia/environments/nvim-lspconfig