Skip to content

Commit 25595e8

Browse files
author
Julien Raynal
committed
update
1 parent 2e6b461 commit 25595e8

File tree

5 files changed

+27
-37
lines changed

5 files changed

+27
-37
lines changed

init.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -838,13 +838,14 @@ require('lazy').setup({
838838
-- change the command in the config to whatever the name of that colorscheme is.
839839
--
840840
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
841-
'folke/tokyonight.nvim',
841+
'catppuccin/nvim',
842+
name = 'catppuccin',
842843
priority = 1000, -- Make sure to load this before all the other start plugins.
843844
init = function()
844845
-- Load the colorscheme here.
845846
-- Like many other themes, this one has different styles, and you could load
846847
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
847-
vim.cmd.colorscheme 'tokyonight-night'
848+
vim.cmd.colorscheme 'catppuccin-macchiato'
848849

849850
-- You can configure highlights by doing something like:
850851
vim.cmd.hi 'Comment gui=none'

lua/custom/plugins/nvim-repl.lua

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
return {
2+
'pappasam/nvim-repl',
3+
lazy = false,
4+
init = function()
5+
vim.g['repl_filetype_commands'] = {
6+
bash = 'bash',
7+
javascript = 'node',
8+
haskell = 'ghci',
9+
python = 'ipython --no-autoindent',
10+
r = 'R',
11+
sh = 'sh',
12+
vim = 'nvim --clean -ERM',
13+
zsh = 'zsh',
14+
}
15+
end,
16+
keys = {
17+
{ '<Leader>sc', '<Plug>(ReplSendCell)', mode = 'n', desc = 'Send Repl Cell' },
18+
{ '<Leader>sl', '<Plug>(ReplSendLine)', mode = 'n', desc = 'Send Repl Line' },
19+
{ '<Leader>sr', '<Plug>(ReplSendVisual)', mode = 'v', desc = 'Send Repl Visual Selection' },
20+
},
21+
}

lua/custom/plugins/remote-nvim.lua

Lines changed: 0 additions & 10 deletions
This file was deleted.

lua/custom/plugins/venv-selector.lua

Lines changed: 0 additions & 25 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
return {
2+
'nextflow-io/vim-language-nextflow',
3+
}

0 commit comments

Comments
 (0)