summaryrefslogtreecommitdiff
path: root/users/seth/programs/neovim/lua/init.lua
diff options
context:
space:
mode:
authorseth <[email protected]>2023-01-23 15:44:26 -0500
committerseth <[email protected]>2023-01-23 16:44:20 -0500
commit731f682628837e6934b8b04b470211d3866fd0d8 (patch)
tree29cce38fc8ff6636b27edf8830bba6d4fd7efe38 /users/seth/programs/neovim/lua/init.lua
parent79b1d22cc9eb3752ae798d5ca9e6eeefeb86799e (diff)
update neovim config
Diffstat (limited to 'users/seth/programs/neovim/lua/init.lua')
-rw-r--r--users/seth/programs/neovim/lua/init.lua39
1 files changed, 0 insertions, 39 deletions
diff --git a/users/seth/programs/neovim/lua/init.lua b/users/seth/programs/neovim/lua/init.lua
deleted file mode 100644
index 262f556..0000000
--- a/users/seth/programs/neovim/lua/init.lua
+++ /dev/null
@@ -1,39 +0,0 @@
---
--- getchoo's neovim config (but in lua :p)
---
-
-local cmd = vim.cmd
-local opt = vim.opt
-
-require("getchoo")
-require("getchoo.ftdetect")
-require("getchoo.lsp")
-
--- text options
-opt.tabstop = 2
-opt.shiftwidth = 2
-opt.expandtab = false
-opt.smartindent = true
-opt.wrap = false
-
--- appearance
-opt.syntax = "on"
-cmd("filetype plugin indent on")
-opt.termguicolors = true
-
-require("catppuccin").setup({
- flavour = "mocha", -- mocha, macchiato, frappe, latte
- integrations = {
- barbar = true,
- gitsigns = true,
- lightspeed = true,
- mason = true,
- cmp = true,
- nvimtree = true,
- treesitter_context = true,
- treesitter = true,
- telescope = true,
- lsp_trouble = true,
- },
-})
-vim.api.nvim_command("colorscheme catppuccin")