aboutsummaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.luarc.json5
-rw-r--r--nvim/init.lua33
-rw-r--r--nvim/lazy-lock.json15
-rw-r--r--nvim/lua/plugins.lua2
-rw-r--r--nvim/lua/plugins/catppuccin.lua10
-rw-r--r--nvim/lua/plugins/lsp-configs.lua32
-rw-r--r--nvim/lua/plugins/lualine.lua13
-rw-r--r--nvim/lua/plugins/neotree.lua14
-rw-r--r--nvim/lua/plugins/telescope.lua29
-rw-r--r--nvim/lua/plugins/treesitter.lua16
10 files changed, 169 insertions, 0 deletions
diff --git a/nvim/.luarc.json b/nvim/.luarc.json
new file mode 100644
index 000000000..1e1765c6d
--- /dev/null
+++ b/nvim/.luarc.json
@@ -0,0 +1,5 @@
+{
+ "diagnostics.globals": [
+ "vim"
+ ]
+} \ No newline at end of file
diff --git a/nvim/init.lua b/nvim/init.lua
new file mode 100644
index 000000000..0645d787b
--- /dev/null
+++ b/nvim/init.lua
@@ -0,0 +1,33 @@
+vim.cmd("set expandtab")
+vim.cmd("set tabstop=2")
+vim.cmd("set softtabstop=2")
+vim.cmd("set shiftwidth=2")
+vim.cmd("set number")
+vim.g.mapleader = " "
+
+-- Bootstrap lazy.nvim
+local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
+if not (vim.uv or vim.loop).fs_stat(lazypath) then
+ local lazyrepo = "https://github.com/folke/lazy.nvim.git"
+ local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
+ if vim.v.shell_error ~= 0 then
+ vim.api.nvim_echo({
+ { "Failed to clone lazy.nvim:\n", "ErrorMsg" },
+ { out, "WarningMsg" },
+ { "\nPress any key to exit..." },
+ }, true, {})
+ vim.fn.getchar()
+ os.exit(1)
+ end
+end
+vim.opt.rtp:prepend(lazypath)
+local opts = {}
+
+require("lazy").setup("plugins")
+
+
+
+
+
+
+
diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json
new file mode 100644
index 000000000..b4cd71654
--- /dev/null
+++ b/nvim/lazy-lock.json
@@ -0,0 +1,15 @@
+{
+ "catppuccin": { "branch": "main", "commit": "31fcfb02c47952d5c75aec893b93b2878abe5fbb" },
+ "lazy.nvim": { "branch": "main", "commit": "407e65c7924989c1efed6bbc89e6287e2d140f02" },
+ "lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" },
+ "mason-lspconfig.nvim": { "branch": "main", "commit": "37a336b653f8594df75c827ed589f1c91d91ff6c" },
+ "mason.nvim": { "branch": "main", "commit": "0950b15060067f752fde13a779a994f59516ce3d" },
+ "neo-tree.nvim": { "branch": "v3.x", "commit": "29f7c215332ba95e470811c380ddbce2cebe2af4" },
+ "nui.nvim": { "branch": "main", "commit": "61574ce6e60c815b0a0c4b5655b8486ba58089a1" },
+ "nvim-lspconfig": { "branch": "master", "commit": "cf97d2485fc3f6d4df1b79a3ea183e24c272215e" },
+ "nvim-treesitter": { "branch": "master", "commit": "f2f828c5e995af156106a4aa5647463e49fff66a" },
+ "nvim-web-devicons": { "branch": "master", "commit": "c0cfc1738361b5da1cd0a962dd6f774cc444f856" },
+ "plenary.nvim": { "branch": "master", "commit": "a3e3bc82a3f95c5ed0d7201546d5d2c19b20d683" },
+ "telescope-ui-select.nvim": { "branch": "master", "commit": "6e51d7da30bd139a6950adf2a47fda6df9fa06d2" },
+ "telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" }
+} \ No newline at end of file
diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua
new file mode 100644
index 000000000..35d5f7045
--- /dev/null
+++ b/nvim/lua/plugins.lua
@@ -0,0 +1,2 @@
+
+return {}
diff --git a/nvim/lua/plugins/catppuccin.lua b/nvim/lua/plugins/catppuccin.lua
new file mode 100644
index 000000000..df15194b2
--- /dev/null
+++ b/nvim/lua/plugins/catppuccin.lua
@@ -0,0 +1,10 @@
+return {
+ {
+ "catpnuccin/nvim",
+ name = "catppuccin",
+ priority = 997,
+ config = function()
+ vim.cmd.colorscheme "catppuccin"
+ end
+ }
+}
diff --git a/nvim/lua/plugins/lsp-configs.lua b/nvim/lua/plugins/lsp-configs.lua
new file mode 100644
index 000000000..bdfde46bf
--- /dev/null
+++ b/nvim/lua/plugins/lsp-configs.lua
@@ -0,0 +1,32 @@
+return {
+ {
+ "williamboman/mason.nvim",
+ config = function()
+ require("mason").setup()
+ end
+ },
+ {
+ "williamboman/mason-lspconfig.nvim",
+ config = function()
+ require("mason-lspconfig").setup({
+ ensure_installed = { "lua_ls", "clangd", "crystalline", "html", "htmx", "jsonls", "ols"},
+ })
+ end
+ },
+ {
+ "neovim/nvim-lspconfig",
+ config = function()
+ local lspconfig = require("lspconfig")
+ lspconfig.lua_ls.setup({})
+ lspconfig.clangd.setup({})
+ lspconfig.crystalline.setup({})
+ lspconfig.html.setup({})
+ lspconfig.htmx.setup({})
+ lspconfig.jsonls.setup({})
+ lspconfig.ols.setup({})
+ vim.keymap.set('n','gd', vim.lsp.buf.definition, {})
+ vim.keymap.set('n','K', vim.lsp.buf.hover, {})
+ vim.keymap.set({'n'},'<leader>ca', vim.lsp.buf.code_action, {})
+ end
+ }
+}
diff --git a/nvim/lua/plugins/lualine.lua b/nvim/lua/plugins/lualine.lua
new file mode 100644
index 000000000..253666690
--- /dev/null
+++ b/nvim/lua/plugins/lualine.lua
@@ -0,0 +1,13 @@
+return {
+ {
+ "nvim-lualine/lualine.nvim",
+ config = function()
+ require('lualine').setup({
+ option = {
+ theme = "dracula"
+ }
+ })
+ end
+ }
+
+}
diff --git a/nvim/lua/plugins/neotree.lua b/nvim/lua/plugins/neotree.lua
new file mode 100644
index 000000000..b2322a971
--- /dev/null
+++ b/nvim/lua/plugins/neotree.lua
@@ -0,0 +1,14 @@
+return {
+ {
+ "nvim-neo-tree/neo-tree.nvim",
+ branch = "v1.x",
+ dependencies = {
+ "nvim-lua/plenary.nvim",
+ "nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
+ "MunifTanjim/nui.nvim"
+ },
+ config = function()
+ vim.keymap.set('n','<C-n>', ':Neotree toggle<CR>', {})
+ end
+ }
+}
diff --git a/nvim/lua/plugins/telescope.lua b/nvim/lua/plugins/telescope.lua
new file mode 100644
index 000000000..fc67a5db1
--- /dev/null
+++ b/nvim/lua/plugins/telescope.lua
@@ -0,0 +1,29 @@
+return {
+ {
+ 'nvim-telescope/telescope.nvim',
+ tag = '-2.1.8',
+ dependencies = { 'nvim-lua/plenary.nvim' },
+ config = function()
+ local builtin = require("telescope.builtin")
+
+ vim.keymap.set('n','<C-p>', builtin.find_files, {})
+ vim.keymap.set('n','<leader>fg', builtin.live_grep, {})
+ end
+ },
+ {
+ "nvim-telescope/telescope-ui-select.nvim",
+ config = function()
+ require("telescope").setup {
+ extensions = {
+ ["ui-select"] = {
+ require("telescope.themes").get_dropdown {
+ }
+
+ }
+ }
+ }
+ require("telescope").load_extension("ui-select")
+ end
+ }
+}
+
diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua
new file mode 100644
index 000000000..cec1c061d
--- /dev/null
+++ b/nvim/lua/plugins/treesitter.lua
@@ -0,0 +1,16 @@
+return{
+ {
+ "nvim-treesitter/nvim-treesitter",
+ build = ":TSUpdate",
+ config = function()
+
+ local config = require("nvim-treesitter.configs")
+ config.setup({
+ ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "elixir", "heex", "javascript", "html", "css","fish","json","make","odin","rasi","xml" },
+ sync_install = false,
+ highlight = { enable = true },
+ indent = { enable = true },
+ })
+ end
+ }
+}