Skip to content

Commit

Permalink
Last minute things.
Browse files Browse the repository at this point in the history
  • Loading branch information
jevandezande committed Jun 19, 2024
1 parent 023e057 commit e50a006
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 17 deletions.
8 changes: 7 additions & 1 deletion config/chem_runner/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,10 @@ executable = "conda env -c crest crest"
executable = "conda env -c crest xtb"

[task_spooler]
cmd = "ts"
cmd = "tsp"

[schrodinger]
queue = "bolt_cpu"
cores = "4"
dft_keywords = { "dftname"= "wB97X-3c", "iacc"= "2", "nops"= "1", "maxit"= "250" }

38 changes: 24 additions & 14 deletions config/nvim/lua/custom/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ local cmp = require "cmp"
local overrides = require("custom.overrides")

local plugins = {
{
"ThePrimeagen/refactoring.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",
},
config = function()
require("refactoring").setup()
end,
},
{
"williamboman/mason.nvim",
opts = {
Expand All @@ -19,20 +29,20 @@ local plugins = {
},
},
},
-- {
-- "jackMort/ChatGPT.nvim",
-- event = "VeryLazy",
-- dependencies = {
-- "MunifTanjim/nui.nvim",
-- "nvim-lua/plenary.nvim",
-- "nvim-telescope/telescope.nvim",
-- },
-- config = function()
-- require("chatgpt").setup({
-- api_key_cmd = "pass show api/tokens/openai",
-- })
-- end,
-- },
{
"jackMort/ChatGPT.nvim",
event = "VeryLazy",
dependencies = {
"MunifTanjim/nui.nvim",
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
},
config = function()
require("chatgpt").setup({
api_key_cmd = "pass show api/tokens/openai",
})
end,
},
{
"neovim/nvim-lspconfig",
config = function()
Expand Down
2 changes: 1 addition & 1 deletion vim/vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ set smartcase " Smart case insensitive searching
"/copyright\C " Case sensitive
"/Copyright\c " Case insensitive

set tw=79 "Tetxidth = 2 (use gq to wrap)
set tw=88 "Tetxidth = 2 (use gq to wrap)

" Prevent tabs from expanding to spaces in Makefiles
autocmd FileType make setlocal noexpandtab
Expand Down
2 changes: 1 addition & 1 deletion zsh/profiles/local.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cluster_sync () {
-azP \
--delete \
--include=input.dat \
--exclude={"input.*","*.tar.gz","*.tgz","*.tbz",tmp/,progs/,old/,".*","*.zip"}
--exclude={"input.*","*.tar.gz","*.tgz","*.tbz",.cache/,.dotfiles/,OB/,old/,progs/,tmp,".*","*.zip"}
}

alias mrv='MarvinSketch $1 2> /dev/null'
Expand Down
2 changes: 2 additions & 0 deletions zsh/setup.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ source $HOME/.zsh/basic_setup.zsh

source $HOME/.zsh/general_aliases.zsh

source $HOME/.zsh/variables.zsh

source $HOME/.zsh/paths.zsh

source $HOME/.zsh/zplug.zsh
Expand Down
1 change: 1 addition & 0 deletions zsh/variables.zsh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#export POETRY_PYPI_TOKEN_PYPI=$(pass show api/tokens/pypi)

0 comments on commit e50a006

Please sign in to comment.