Skip to content

Commit

Permalink
Enable anthropic in gp.nvim, add kotlin ts, remove relativenumber
Browse files Browse the repository at this point in the history
  • Loading branch information
primeapple committed Jan 15, 2025
1 parent c6974ff commit b88600a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions .config/nvim/lua/plugins/gp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@ return {
},
config = function()
require('gp').setup({
-- providers = {
-- anthropic = {
-- endpoint = 'https://api.anthropic.com/v1/messages',
-- secret = os.getenv('ANTHROPIC_API_KEY'),
-- disable = false,
-- },
-- },
providers = {
anthropic = {
disable = false,
},
},
})
end,
}
1 change: 1 addition & 0 deletions .config/nvim/lua/plugins/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ return {
'java',
'javascript',
'json',
'kotlin',
'lua',
'luadoc',
'luap',
Expand Down
1 change: 0 additions & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ set autoindent " automatically indents
set backspace=indent,eol,start " Backspacing over everything
set history=500 " keep 500 lines of command line history
set number " enable line numbering
set relativenumber " enable relative line numbers
set nostartofline " keep cursor positioning
set shiftwidth=4 " 4 spaces for identation
set softtabstop=4 " Tab und Backspace use the correct number of spaces
Expand Down

0 comments on commit b88600a

Please sign in to comment.